| 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 : |
-- MySQL dump 10.13 Distrib 8.0.27, for Linux (x86_64)
--
-- Host: localhost Database: b2cHelloGTx_old
-- ------------------------------------------------------
-- 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: `b2cHelloGTx_old`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `b2cHelloGTx_old` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `b2cHelloGTx_old`;
--
-- 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=2 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','','piyush@catpl.co.in','admin','03810ff365fbdd67751b5148d76b51ed','2010-10-30 22:51:18','2010-10-30 22:51:18','2010-10-30 23:39:32',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 AUTO_INCREMENT=8 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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=121 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 AUTO_INCREMENT=3 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 */;
INSERT INTO `tb_agency_userrole_mapping` VALUES (1,5642,6607,'1','1','0'),(2,5628,6594,'1','1','0');
/*!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 AUTO_INCREMENT=25 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 */;
INSERT INTO `tb_agency_userrole_permission` VALUES (1,5642,6607,0,'Dashboard','MOD01','dashboard','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',1,'1','dashboard',1,'0','index'),(2,5642,6607,0,'Staff Management','MOD02','','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',2,'1','staff-management',1,'0',''),(3,5642,6607,0,'Staff','STA01','staff','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',1,'1','staff-management',3,'MOD02','index'),(4,5642,6607,0,'Search','MOD03','','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',3,'1','search',1,'0',''),(5,5642,6607,0,'Flights','SRC01','flight','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',1,'1','default',2,'MOD03','flight'),(6,5642,6607,0,'Bookings','MOD04','','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',4,'1','bookings',1,'0',''),(7,5642,6607,0,'Flights','BOK01','bookings/flight','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',1,'1','bookings',2,'MOD04','flight'),(8,5642,6607,0,'Finance','MOD05','','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',5,'1','finance',1,'0',''),(9,5642,6607,0,'Deposit Payment','FIN01','finance/deposit','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',1,'1','finance',2,'MOD05','deposit'),(10,5642,6607,0,'Ledger','FIN02','finance/ledger','2021-03-12 18:49:00','2021-03-12 18:49:00','1','0',2,'1','finance',2,'MOD05','ledger'),(11,5642,6607,0,'Settings','MOD06','','2021-03-12 18:49:00','2021-03-12 18:49:00','0','0',6,'1','settings',1,'0',''),(12,5642,6607,0,'Markup','SET01','markup','2021-03-12 18:49:00','2021-03-12 18:49:00','0','0',1,'1','default',1,'MOD06','markup'),(13,5628,6594,0,'Dashboard','MOD01','dashboard','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',1,'1','dashboard',1,'0','index'),(14,5628,6594,0,'Staff Management','MOD02','','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',2,'1','staff-management',1,'0',''),(15,5628,6594,0,'Staff','STA01','staff','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',1,'1','staff-management',3,'MOD02','index'),(16,5628,6594,0,'Search','MOD03','','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',3,'1','search',1,'0',''),(17,5628,6594,0,'Flights','SRC01','flight','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',1,'1','default',2,'MOD03','flight'),(18,5628,6594,0,'Bookings','MOD04','','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',4,'1','bookings',1,'0',''),(19,5628,6594,0,'Flights','BOK01','bookings/flight','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',1,'1','bookings',2,'MOD04','flight'),(20,5628,6594,0,'Finance','MOD05','','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',5,'1','finance',1,'0',''),(21,5628,6594,0,'Deposit Payment','FIN01','finance/deposit','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',1,'1','finance',2,'MOD05','deposit'),(22,5628,6594,0,'Ledger','FIN02','finance/ledger','2021-03-12 19:07:00','2021-03-12 19:07:00','1','0',2,'1','finance',2,'MOD05','ledger'),(23,5628,6594,0,'Settings','MOD06','','2021-03-12 19:07:00','2021-03-12 19:07:00','0','0',6,'1','settings',1,'0',''),(24,5628,6594,0,'Markup','SET01','markup','2021-03-12 19:07:00','2021-03-12 19:07:00','0','0',1,'1','default',1,'MOD06','markup');
/*!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 AUTO_INCREMENT=74 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 */;
INSERT INTO `tb_deposit_payment` VALUES (58,2,1,'ONLINE',NULL,10000,'25497565','2021-01-20','test',7,1,0,'2021-01-23 15:26:01','2021-01-23 15:26:01',0,0,0,NULL,NULL,NULL),(59,2,1,'ONLINE',NULL,10000,'25497565','2021-01-20','test',7,1,0,'2021-01-23 15:28:29','2021-01-23 15:28:29',0,0,0,NULL,NULL,NULL),(60,2,1,'ONLINE','B83B68CA4A404FC6838D880A7B8376BF',10000,'25497565','2021-01-20','test',7,1,0,'2021-01-23 15:30:37','2021-01-23 15:30:37',0,1,0,NULL,NULL,NULL),(61,2,1,'ONLINE','205394A6C9A94E9AAF32427159A91918',5000,'98587885555','2020-12-02','',7,1,0,'2021-01-23 17:37:58','2021-01-23 17:37:58',0,1,0,NULL,NULL,NULL),(63,19,1,'ONLINE',NULL,100,'599','2021-04-23','vcxvcxx',7,1,23,'2021-02-15 13:52:46','2021-02-15 13:52:46',0,0,0,NULL,NULL,NULL),(64,19,1,'ONLINE',NULL,100,'599','2021-04-23','vcxvcxx',7,1,23,'2021-02-15 13:53:18','2021-02-15 13:53:18',0,0,0,NULL,NULL,NULL),(65,19,1,'ONLINE',NULL,100,'599','2021-04-23','vcxvcxx',7,1,23,'2021-02-15 13:57:33','2021-02-15 13:57:33',0,0,0,NULL,NULL,NULL),(66,19,1,'ONLINE',NULL,1000,'5454545','2021-02-23','cxzvzzz',7,1,23,'2021-02-15 13:59:35','2021-02-15 13:59:35',0,0,0,NULL,NULL,NULL),(67,19,1,'ONLINE',NULL,1000,'5454545','2021-02-23','cxzvzzz',7,1,23,'2021-02-15 14:00:24','2021-02-15 14:00:24',0,0,0,NULL,NULL,NULL),(68,19,1,'ONLINE','8C3883C390674801B23142ED77EC34FD',5000,NULL,'2021-02-17','dfsfsd',7,1,23,'2021-02-15 14:02:50','2021-02-15 14:02:50',0,1,1,'','',NULL),(69,19,1,'ONLINE','1A4ABD9BDAC1443FBEFB7E3FA33AA666',100,'11000000061997','2021-02-17','fdsfdsfs',7,1,23,'2021-02-15 15:42:19','2021-02-15 15:42:19',0,1,1,'','',NULL),(70,19,1,'ONLINE','CADADB09EB3A48879196E0D38FEFA1B9',200,'11000000061999','2021-02-02','test',7,1,23,'2021-02-15 15:47:06','2021-02-15 15:47:06',0,1,1,'','',NULL),(71,19,1,'CHEQUE','FD94C4788AFE4419AEBFA4A14D4765C0',5000,'43252','2021-02-01','gdgs',7,1,23,'2021-02-15 15:56:44','2021-02-15 15:56:44',0,1,0,NULL,NULL,NULL),(72,19,1,'ONLINE',NULL,1000,'11000000062076','2021-02-15','fsfsdfsd',7,1,23,'2021-02-15 16:51:49','2021-02-15 16:51:49',0,4,0,'','','2'),(73,19,1,'ONLINE','963B31552B6F4445AFEFEAA8B6F8034B',1000,'11000000062077','2021-02-15','',7,1,23,'2021-02-15 16:52:24','2021-02-15 16:52:24',0,1,1,'','',NULL);
/*!40000 ALTER TABLE `tb_deposit_payment` 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',
`isDisplayOnHome` tinyint NOT NULL DEFAULT '0',
`isDisplayOnBanner` enum('0','1') NOT NULL DEFAULT '0',
`status` tinyint NOT NULL DEFAULT '0',
`isMarkForDel` tinyint NOT NULL DEFAULT '0',
PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 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.hellogtx.com/',0,0,'0',1,0),(5,'5_1616137420.jpg','Delightful DUBAI','UPTO 50% off on maximum Dubai Hotels and Activities. Dubai Visa Free for Kids under 12 years','http://ineedtrip.hellogtx.com/tour-destination/dubai',0,1,'0',1,0),(13,'13_1616142242.jpg','Stress Free MALDIVES','Get Complimentary RT-PCR test along with Covid Cover under Travel Insurance','http://ineedtrip.hellogtx.com/tour-destination/maldives/',0,1,'0',1,0),(14,'14_1616140607.jpg','Weekend in GOA','Pamper yourself To a Long Weekend Holiday in Goa','http://ineedtrip.hellogtx.com/tour-destination/goa/',0,1,'0',1,0),(15,'15_1616141977.jpg','Romantic ANDAMAN','Early Bird Offer, Enjoy upto 20% discount on Flights and Hotels till 31st March','https://www.ineedtrip.com/tour-destination/andaman-and-nicobar-islands/',0,1,'0',1,0),(16,'16_1616149658.jpg','Easy EMI Available','Travel Now Pay later on your every Domestic or International Holidays, Upto 10 Lakhs','',0,1,'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 AUTO_INCREMENT=283 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_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,
`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`,`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 */;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_air` 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 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 */;
/*!40000 ALTER TABLE `tb_shared_proposal` 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` varchar(250) DEFAULT NULL,
`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=35 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,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18892,0,1,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,'','','','',NULL,NULL,NULL,1),(2,NULL,NULL,'',NULL,'<p>Dubai is beautiful destination.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8219,1,1,NULL,'Dubai',2,NULL,NULL,6,NULL,NULL,'2_1615901070.jpg','2_1614076919.jpg','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,0,0,'','','','',NULL,NULL,NULL,1),(3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30178,NULL,NULL,NULL,'Yamunotri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28264,NULL,NULL,NULL,'Uttarkashi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27156,NULL,NULL,NULL,'Thekkady',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34295,NULL,NULL,NULL,'Rudraprayag',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18697,NULL,NULL,NULL,'Munnar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17162,NULL,NULL,NULL,'Mauritius',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14578,NULL,NULL,NULL,'Kumarakom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13758,NULL,NULL,NULL,'Kedarnath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11530,NULL,NULL,NULL,'Haridwar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34396,NULL,NULL,NULL,'Guptakashi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10105,NULL,NULL,NULL,'Gangotri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(14,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,6561,1,NULL,NULL,'Cochin',5,NULL,NULL,0,NULL,NULL,'14_1617180969.jpg',NULL,'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,'','','','',NULL,NULL,NULL,1),(15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34474,NULL,NULL,NULL,'Barkot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(16,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2001,0,1,NULL,'Badrinath',3,NULL,NULL,5,NULL,NULL,'16_1614331854.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,'','','','',NULL,NULL,NULL,1),(17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,670,NULL,NULL,NULL,'Alleppey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(18,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,105,0,NULL,NULL,'Abu Dhabi',2,NULL,NULL,5,NULL,NULL,NULL,NULL,'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,0,0,'','','','',NULL,NULL,NULL,1),(19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26381,NULL,NULL,NULL,'Sun City',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20426,0,NULL,NULL,'Oudtshoorn',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14524,NULL,NULL,NULL,'Kruger National Park',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14261,NULL,NULL,NULL,'Knysna',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13189,NULL,NULL,NULL,'Johannesburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10294,NULL,NULL,NULL,'George',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5069,0,NULL,NULL,'Cape Town',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16508,0,NULL,NULL,'Male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(27,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16505,1,NULL,NULL,'Maldives',1,NULL,NULL,0,NULL,NULL,'27_1617181027.jpg',NULL,'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,'','','','',NULL,NULL,NULL,1),(28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,23644,NULL,NULL,NULL,'Saint Petersburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18488,NULL,NULL,NULL,'Moscow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34550,NULL,NULL,NULL,'Mukteshwar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32511,NULL,NULL,NULL,'Port Blair',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34567,NULL,NULL,NULL,'Neil Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(33,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11658,1,NULL,NULL,'Havelock Island',5,NULL,NULL,0,NULL,NULL,'33_1615900970.jpg',NULL,'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,'','','','',NULL,NULL,NULL,1),(34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7701,NULL,NULL,NULL,'Delhi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'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,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=7 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'),(3,'nupur@ineedtrip.com','2021-03-19 12:15:22','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');
/*!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) 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(500) 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=37 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,1,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\":\"<p><span class="marker"><strong>SHERVANI HILLTOP PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Commonly known as the &ldquo;Lake District of India&rdquo;,&nbsp;<strong>Nainital<\\/strong>&nbsp;is one of the most beautiful hill stations in North India. Surrounded by mountains on three sides&nbsp;<strong>Nainital<\\/strong>&nbsp;is located around the beautiful lake Naini Tal. This lake resort is situated at a height of 1,938 meters.<\\/p>\\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\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;When you stay at Shervani Hilltop Nainital in Nainital, you&apos;ll be in the historical district and convenient to China Peak and Nainital Lake. This hotel is within the region of Ghorakhal Temple.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&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.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&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.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the hotel&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.&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 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.&lt;\\/p&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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>GST if not mentioned in the rates<\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommended&nbsp;by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>Premium Room&nbsp;with Breakfast &amp; Dinner<\\/li>\\r\\n\\t<li>02 Nights 03 Days<\\/li>\\r\\n\\t<li>All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&nbsp;(until or unless specified Private in the itinerary)<\\/li>\\r\\n\\t<li>Road taxes, parking fees, fuel charges, interstate taxes<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166958\":[{\"Sequence\":[0],\"TPInvnSysId\":[166958],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"166959\":[{\"Sequence\":[0],\"TPInvnSysId\":[166959],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"166960\":[{\"Sequence\":[0],\"TPInvnSysId\":[166960],\"Remark\":[\"<p><br><\\/p>\"],\"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','2021-03-18 18:32:50','2021-03-18 00:00:00',1,1,'1','1','0','','','',NULL,'shervani-hilltop-package',NULL,NULL,NULL,0),(2,22702,1,5293,1,0,0,'Honeymoon',NULL,1,1,0,'{\"package\":{\"TPId\":22702,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_LUXURY_HONEYMOON_PACKAGE_64.jpg\",\"BookingValidUntill\":\"2021-03-31\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><span class="marker"><strong>LUXURY HONEYMOON PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>5 Nights &amp; 6 Days&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<p>One voucher of Lunch or Dinner for couple at Signature By Sanjeev Kapoor Restaurant (3 Course Set Menu)<br \\/>\\r\\nOne complimentary 45 min SPA for 1 person during the stay. 50% discount for the second person<br \\/>\\r\\nOne Souvenir per couple<br \\/>\\r\\nComplimentary Sparkling Wine bottle<br \\/>\\r\\nHoneymoon special amenities upon arrival<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\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\":\"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\":\"2021-03-23\",\"To\":\"2021-03-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\":\"<p>Our 5-star hotel in old Dubai pays homage to the idea of the city as a blank canvas – a place of constant transformation where even the most impossible dreams can become a reality. In particular, Bur Dubai’s dual role as a historic centre and modern trendsetter have inspired our own outlook, which is both respectfully traditional and fiercely contemporary.<\\/p>\\r\\n\\r\\n<p>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’s polished steel wall art, a tribute to the beauty of Dubai’s night-time skyline. Burgundy leather sofas invite travel-weary legs to rest awhile and admire masterpieces by Emirati artists – proof of the city’s leadership in the spheres of art and culture.<\\/p>\\r\\n\\r\\n<p>Perhaps you will dedicate your time to exploring Bur Dubai’s heritage – through a visit to the historic Al Bastakiya neighbourhood perhaps, or with a Memorable Moment tour of the Etihad Museum. Perhaps you’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’s largest private jacuzzi. Or revel in the tantalising scents and flavours served up at our celebrity restaurant, Signature by Sanjeev Kapoor.<\\/p>\\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\":\"Swimmin 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\":\"Dubai City Tour\",\"Description\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"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 Tour\",\"Description\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"162556\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer from Airport to Hotel.<\\/p>\\r\\n\\r\\n<p>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\":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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’s famous museum. There are several other attractions also that we would witness while on the tour.<\\/p>\\r\\n\\r\\n<p><strong>Visit to La Mer Beach<\\/strong> is also included in the Tour.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"<p>Evening is for the exciting <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'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\":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\":\"<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\":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\":\"<p> <\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"41250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":41250,\"priceDoubleOcc\":\"41250.00\",\"priceSingleOcc\":82500,\"priceExtraBed\":\"41250.00\",\"priceWithoutBed\":\"41250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>Above rates will not be valid during any peak period.<\\/li>\\r\\n\\t<li>All Transfers will be as mentioned above.<\\/li>\\r\\n\\t<li>Rates are inclusive of all local taxes and VAT except Tourism Fee.<\\/li>\\r\\n\\t<li>We are not holding any rooms, rooms will be on subject to availability at the time of actual booking.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>05 Nights stay with breakfast at hotel<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers - Private basis<\\/li>\\r\\n\\t<li>Half Day Dubai City Tour with visit to Lamer Beach - Private basis<\\/li>\\r\\n\\t<li>Desert Safari with dinner - Deluxe Camp with Butler service - Sharing basis<\\/li>\\r\\n\\t<li>Canal Cruise with dinner - Private transfers<\\/li>\\r\\n\\t<li>Visit to Dubai Mall with entrance to Burj Khalifa 124th Floor (Standard time) + Dubai Lake Fountain Ride - Private transfers<\\/li>\\r\\n\\t<li>One voucher of Lunch or Dinner for couple at Signature By Sanjeev Kapoor Restaurant (3 Course Set Menu)<\\/li>\\r\\n\\t<li>One complimentary 45 min SPA for 1 person during the stay. 50% discount for the second person<\\/li>\\r\\n\\t<li>One Souvenir per couple<\\/li>\\r\\n\\t<li>Complimentary Sparkling Wine bottle<\\/li>\\r\\n\\t<li>Honeymoon special amenities upon arrival<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162556\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162556],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162557\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162557],\"Remark\":[\"<p>TOUR TRANSFERS ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162558\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162558],\"Remark\":[\"<p>TOUR TRANSFERS ON SHARING BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162559\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162559],\"Remark\":[\"<p>TOUR TRANSFERS ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162560\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162560],\"Remark\":[\"<p>TOUR TRANSFERS ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162561\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162561],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',41250,41250,5,'2_1616151705_0.jpg,2_1616151729_0.jpg,2_1616151729_1.jpg','2_banner_1614076464.jpg','[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-03-23 00:00:00','2021-03-31 00:00:00','2021-03-31 00:00:00',3,'United Arab Emirates','228','2021-03-23 16:13:12','2021-03-23 00:00:00',1,1,'1','1','0','','','',NULL,'luxury-honeymoon-package',NULL,NULL,NULL,0),(3,22090,1,5293,1,0,0,'Honeymoon,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22090,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/HONEYMOON_DUBAI_WITH_MAURITIUS_73.jpg\",\"BookingValidUntill\":\"2021-04-05\",\"AdvBookingDays\":30,\"DETAILS\":\"<p>Dubai, a perfect destination known for its magnificent nightlife and charming lifestyle, while the adorable beauty of nature and blessed topography packed in Mauritius Island. Explore Dubai and Mauritius with our Dubai Mauritius Group Tour Packages.<\\/p>\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"STARTING FROM 34999\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"HONEYMOON 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\":\"Flight,Hotel,B\\/fast & Dinner,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Leisure\",\"Validity\":{\"From\":\"2021-02-22\",\"To\":\"2021-04-05\"},\"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\":\"BB\"},{\"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 & 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é 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 & tradit\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICj7LhRYuT1RY+ClRs27teEFnxnZJMfiYbX4fETs728CeV3JCOeEu6HG4sNafNm5F2uCIonG7ZfzZINgNeW\\/BWNHnn2paKO7U8suJyz7w3SwGYO98pHEeVmpMdIpJQ8q7de67wUvUyjIng==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"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'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\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=hpRBSdtPJNrQuwRo5I\\/exPbdtjJGoRI2R1Qo2\\/mGLJnD3Labs864bu1awghNJAAvjq2FjKN9\\/XUlwUIoZ5y73A==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"BB\"}]},\"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&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: &ldquo;tallest structure&rdquo; and &ldquo;tallest free-standing structure&rdquo; other than the world&rsquo;s &ldquo;tallest building&rdquo;. The tower also holds world records for &lsquo;highest occupied floor&rsquo;, &lsquo;highest number of stories&rsquo;, &lsquo;longest travel distance elevators&rsquo;, &lsquo;tallest service elevator&rsquo; and &lsquo;second highest outdoor observatory deck&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 & Under Water Zoo\",\"Description\":\"Dubai Aquarium &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_&_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&#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\":391860,\"Name\":\"Tarisa Resort & 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&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\":\"HB\"},{\"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; 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\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1Pri\\/kDIz7H6C0WdIe9WuPZXECEZbXBlcdiuw3ieq8WkcCattcS0+\\/6XoWwAQUQmuf5UPG\\/bOJD8uB5EgMWKRa8lg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"HB\"},{\"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' drive from the main tourist region of Grand Bay, and 50 minutes' 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's playground and a kids' 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's car park. Cars, scooters and bicycles are all available to rent (hire fees apply) and the hotel'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\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFuDrz1NcxYiSHecAs+1XaV9uMJ11ycargJk8lA8+\\/GxxAY0VVtht8Cxw==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior sea view room\",\"MealTypeName\":\"HB\"}]},\"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&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: &ldquo;tallest structure&rdquo; and &ldquo;tallest free-standing structure&rdquo; other than the world&rsquo;s &ldquo;tallest building&rdquo;. The tower also holds world records for &lsquo;highest occupied floor&rsquo;, &lsquo;highest number of stories&rsquo;, &lsquo;longest travel distance elevators&rsquo;, &lsquo;tallest service elevator&rsquo; and &lsquo;second highest outdoor observatory deck&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 & Under Water Zoo\",\"Description\":\"Dubai Aquarium &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_&_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&#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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"158084\",\"Title\":\"Arrive Dubai\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Airport and Drop to Hotel.<\\/p>\\r\\n\\r\\n<p>Dhow Cruise with Dinner.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>HALF DAY CITY TOUR WITH DESERT SAFARI WITH DINNER<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>Breakfast with Burj Khalifa and Dubai Under Water Zoo<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>ABU DHABI FULL DAY TOUR WITH FERRARI WORLD<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>0<\\/p>\\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\":\"<p>CHECK OUT AND TRANSFER TO AIRPORT \\/\\/ FLIGHT TO MAURITIUS<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"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\":\"<p>SOUTH ISLAND TOUR<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"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\":\"<p>NORTH ISLAND TOUR<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"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\":\"<p>EAST ISLAND TOUR<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"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\":\"<p>CHECK OUT <\\/p>\\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\":12,\"Price\":\"40331.39\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":40331,\"priceDoubleOcc\":\"40331.39\",\"priceSingleOcc\":80662.78,\"priceExtraBed\":\"40331.39\",\"priceWithoutBed\":\"40331.39\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40331.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22091\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"60497.08\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":60497,\"priceDoubleOcc\":\"60497.08\",\"priceSingleOcc\":120994.16,\"priceExtraBed\":\"60497.08\",\"priceWithoutBed\":\"60497.08\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60497.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"22092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"80662.78\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-01-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":80663,\"priceDoubleOcc\":\"80662.78\",\"priceSingleOcc\":161325.56,\"priceExtraBed\":\"80662.78\",\"priceWithoutBed\":\"80662.78\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"80662.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<p>Refund Policy<\\/p>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50 advance to be paid at the time of booking.<\\/li>\\r\\n\\t<li>Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.<\\/li>\\r\\n\\t<li>100 payment is to be made for domestic packages before 4 days of departure date.<\\/li>\\r\\n\\t<li>100 payment is to be made for international packages before 7 days of departure date.<\\/li>\\r\\n\\t<li>In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p>If you Cancel your Holiday<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>\\r\\n\\t<p>30 days or more before date of departure : 25% of total cost<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>29 - 20 days before date of departure : 50% of total cost<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>19 days or less before date of departure : 100% of total cost<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p><strong>GST if not mentioned in the rates<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Anything not mentioned under Package Inclusions.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Entrance fees at all monuments and sightseeing spots<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Airfare if not mentioned in the&nbsp;itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>Hotel Nights accommodation on twin sharing basis as per itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Meals as per hotel plan<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Road taxes, parking fees, fuel charges, interstate taxes<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<p>Here is a must take list that you should carry while traveling:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>ID Proof any Passport v(For International Travel)<\\/li>\\r\\n\\t<li>Water Bottle with a Filtering System<\\/li>\\r\\n\\t<li>Daily Medications<\\/li>\\r\\n\\t<li>Phone Chargers<\\/li>\\r\\n\\t<li>Camera<\\/li>\\r\\n\\t<li>ID Proof<\\/li>\\r\\n\\t<li>Toilet Papers<\\/li>\\r\\n\\t<li>Walking Shoes<\\/li>\\r\\n\\t<li>Ear Phones<\\/li>\\r\\n\\t<li>Cap<\\/li>\\r\\n\\t<li>Power bank<\\/li>\\r\\n\\t<li>Sun Screen Lotion<\\/li>\\r\\n\\t<li>Wipes<\\/li>\\r\\n\\t<li>Ladies basics<\\/li>\\r\\n\\t<li>Mosquito Creame\\/bands\\/net depending upon your itinerary.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p>We are a Travel Boutique house which specializes in the personalized travel experiences . We have&nbsp;travelled&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; 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.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"158084\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[158084],\"Remark\":[\"<p>Dhow Cruise Transfer on SIC<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158087\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[158087],\"Remark\":[\"<p>All Tours are on SIC.<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158090\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[158090],\"Remark\":[\"<p>All Transfers on SIC.<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158093\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[158093],\"Remark\":[\"<p>Full day tour on Private<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158096\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[158096],\"Remark\":[\"<p><br><\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158099\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[158099],\"Remark\":[\"<p><br><\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"158102\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[158102],\"Remark\":[\"<p>ALL TOUR ON SIC<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158105\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[158105],\"Remark\":[\"<p>ALL TOUR ON SIC<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158108\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[158108],\"Remark\":[\"<p>EAST ISLAND TOUR<\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158111\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[158111],\"Remark\":[\"<p><br><\\/p> \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Dubai,Mauritius','Dubai,Middle East,United Arab Emirates,Mauritius,East African Islands,Abu Dhabi','','8219,17162',40331,80663,8,'3_1615741219_0.jpg,3_1615808517_0.jpg,3_1615808517_1.jpg,3_1615808873_0.jpg','3_banner_1614076388.jpg',NULL,2,'',0,'2021-02-22 00:00:00','2021-04-05 00:00:00','2021-04-05 00:00:00',3,'United Arab Emirates,Mauritius','228,139','2021-03-18 18:30:10','2021-02-22 00:00:00',1,1,'0','0','0','','','',NULL,'honeymoon-dubai-with-mauritius',NULL,NULL,NULL,0),(4,23759,1,5293,1,0,0,'Honeymoon,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":23759,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Explore_Kerala__63.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><span class="marker"><strong>Tour in Kerala &ndash; God&rsquo;s Own Country<\\/strong><\\/span><br \\/>\\r\\n06 Nights \\/ 07 Days<br \\/>\\r\\n(Arrival Cochin \\/ 01N Cochin \\/ 02N Munnar \\/ 01N Thekkady \\/ 01N Alleppey \\/ 01N Kumarakom \\/ Drop at Cochin)<\\/p>\\r\\n\",\"AdvBookingPercent\":20,\"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\"},\"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\":\"2021-03-10\",\"To\":\"2021-09-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\",\"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\",\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477493,\"Name\":\"Le M\\u00e9ridien Kochi\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9337958\",\"Long\":\"76.3164532\",\"Address\":\"Kundannoor, Maradu, Kochi, Kerala 682304, India\"},\"Images\":[],\"CityId\":6561,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM\",\"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\",\"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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"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\",\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477501,\"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\":5671,\"SupplierName\":\"CONTENTO TOURISM\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"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\",\"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\",\"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'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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"}]},\"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\",\"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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"169661\",\"Title\":\"Arrive Cochin\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Today arrive at Cochin International Airport. Meet and Greet by ‘Contento’ representative who will be waiting for you outside the arrival terminal. The representative will assist you to the cab assigned for you. Your 07 day tour in Kerala starts with your drive to your hotel in Cochin. <\\/p>\\r\\n\\r\\n<p><em>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.<\\/em><\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>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. <\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Jewish Synagogue (<span style=\\\"color:#0070c0\\\">Closed on Friday, Saturday and on Jewish Holidays<\\/span>) <\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><em>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. <\\/em><\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>The Dutch Palace (<span style=\\\"color:#0070c0\\\">Closed on Friday<\\/span>)<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><em>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. <\\/em><\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Chinese fishing nets<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><em>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. <\\/em><\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>St. Francis Church (Closed on Sunday during Mass) <\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><em>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.<\\/em><\\/p>\\r\\n\\r\\n<p>Later back to hotel.<\\/p>\\r\\n\\r\\n<p>Overnight stay at hotel.<\\/p>\\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},{\"Item\":[{\"IsIncluded\":true,\"Id\":477493,\"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\":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\":\"<p>0<\\/p>\\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 \\u2013 Munnar (155 kms \\/ 05 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>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.<\\/p>\\r\\n\\r\\n<p>Overnight stay at hotel.<\\/p>\\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\":\"<p>This morning after breakfast, set off to explore Munnar. Your visits for the day will feature the below places.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Eravikulam National Park (<span style=\\\"color:#0070c0\\\">Closed during Feb & March<\\/span>)<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Tea Museum<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Mattupetti Dam<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Later drive back to hotel.<\\/p>\\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\":\"<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\":\"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 \\u2013 Thekkady (130 kms \\/ 04 hrs)\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>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.<\\/p>\\r\\n\\r\\n<p><em>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.<\\/em><\\/p>\\r\\n\\r\\n<p> 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.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\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\":\"<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\":\"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 \\u2013 Alleppey (190 kms \\/ 4.5 hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>Today morning after breakfast from the hotel, drive to Alleppey, also known as Venice of the East. <\\/p>\\r\\n\\r\\n<p><em>Alappuzha – most still call it Alleppey – is the hub of Kerala'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'd be hard-pressed to agree with the 'Venice of the East' tag.<\\/em><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p><em>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 "tied with ropes", and vallam means "boat"), 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.<\\/em><\\/p>\\r\\n\\r\\n<p>Overnight stay on board houseboat<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"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\":\"169693\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\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\":\"<p>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.<\\/p>\\r\\n\\r\\n<p><em>Kumarakom is a village on Vembanad Lake in the backwaters of Kerala, southern India. It’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.<\\/em><\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel<\\/p>\\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 \\u2013 Cochin Drop\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>This morning after breakfast from Check out and drive Cochin. Drop at Cochin Airport.<\\/p>\\r\\n\\r\\n<p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Tour Ends~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<\\/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\":\"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\":\"14135.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10982,\"priceDoubleOcc\":\"14135.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14135.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10982,\"priceDoubleOcc\":\"14135.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14135.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10982,\"priceDoubleOcc\":\"14135.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14135.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10982,\"priceDoubleOcc\":\"14135.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14135.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11202,\"priceDoubleOcc\":\"14465.00\",\"priceSingleOcc\":32450,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14465.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13548,\"priceDoubleOcc\":\"17985.00\",\"priceSingleOcc\":35970,\"priceExtraBed\":\"4675.00\",\"priceWithoutBed\":\"4675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17985.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16775.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13182,\"priceDoubleOcc\":\"16775.00\",\"priceSingleOcc\":37620,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13182,\"priceDoubleOcc\":\"16775.00\",\"priceSingleOcc\":37620,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13182,\"priceDoubleOcc\":\"16775.00\",\"priceSingleOcc\":37620,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13182,\"priceDoubleOcc\":\"16775.00\",\"priceSingleOcc\":37620,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13548,\"priceDoubleOcc\":\"17325.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17325.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15895,\"priceDoubleOcc\":\"20845.00\",\"priceSingleOcc\":41690,\"priceExtraBed\":\"5995.00\",\"priceWithoutBed\":\"5995.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20845.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23761\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":44715,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":44715,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":44715,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":44715,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16757,\"priceDoubleOcc\":\"20845.00\",\"priceSingleOcc\":45210,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20845.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19103,\"priceDoubleOcc\":\"24365.00\",\"priceSingleOcc\":48730,\"priceExtraBed\":\"8580.00\",\"priceWithoutBed\":\"8580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24365.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23762\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25245.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20148,\"priceDoubleOcc\":\"25245.00\",\"priceSingleOcc\":54230,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25245.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20148,\"priceDoubleOcc\":\"25245.00\",\"priceSingleOcc\":54230,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25245.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20148,\"priceDoubleOcc\":\"25245.00\",\"priceSingleOcc\":54230,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25245.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20148,\"priceDoubleOcc\":\"25245.00\",\"priceSingleOcc\":54230,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25245.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20368,\"priceDoubleOcc\":\"25575.00\",\"priceSingleOcc\":54560,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25575.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-24\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22642,\"priceDoubleOcc\":\"28985.00\",\"priceSingleOcc\":57970,\"priceExtraBed\":\"9955.00\",\"priceWithoutBed\":\"9955.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28985.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>Above is a quotation and no booking or blocking has been made.<\\/li>\\r\\n\\t<li>Above rates are net and non-commissionable<\\/li>\\r\\n\\t<li>In case of above mentioned hotels are not available at the time of confirmation, alternate similar hotels will be provided<\\/li>\\r\\n\\t<li>Hotel check in time is 1400 hrs and check out is 1200 hrs<\\/li>\\r\\n\\t<li>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<\\/li>\\r\\n\\t<li>Above rates are valid for this enquiry and any change in travel date will change the quote<\\/li>\\r\\n\\t<li>All hotel rooms considered are basic rooms and any upgrades to higher category will be on additional payment<\\/li>\\r\\n\\t<li>Hotel rooms in Munnar &amp; Thekkady will be Non AC due to the cold climate in the destination<\\/li>\\r\\n\\t<li>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<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>Any Flight fare<\\/li>\\r\\n\\t<li>Any Entrance fees during sightseeing<\\/li>\\r\\n\\t<li>Any guide charges<\\/li>\\r\\n\\t<li>Any meals which is not mentioned in the program<\\/li>\\r\\n\\t<li>Any activity which is not mentioned in the program<\\/li>\\r\\n\\t<li>Any expense of personal nature such as laundry, drinks, tipping, telephone etc.<\\/li>\\r\\n\\t<li>Camera\\/Video charges at monuments<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>&nbsp;Accommodation in a Dbl sharing room&nbsp;<\\/li>\\r\\n\\t<li>&nbsp;Daily breakfast at hotels<\\/li>\\r\\n\\t<li>&nbsp;All meals during stay in Houseboat<\\/li>\\r\\n\\t<li>&nbsp;Transportation by AC Med Car \\/ AC Innova\\/AC Tempo as per pax strength<\\/li>\\r\\n\\t<li>&nbsp;All toll\\/parking, driver allowances<\\/li>\\r\\n\\t<li>&nbsp;All presently applicable taxes EXCEPT GST on total invoice<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>NOTE : YOUR CAN OPT FOR UPGRADE TO MAP MEAL PLAN AT AN ADDITIONAL COST OF INR 3500 PER PERSON APPROX.<\\/strong><\\/span><\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"169661\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[169661],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169665\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169665],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169669\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169669],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169673\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169673],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169677\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169677],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169681\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169681],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169685\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169685],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169689\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169689],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169693\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[169693],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169697\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[169697],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169701\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[169701],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Cochin,Munnar,Thekkady,Alleppey,Kumarakom','Cochin,Kerala,Indian Subcontinent,South India,India,Munnar,Thekkady,Alleppey,Kumarakom','','6561,18697,27156,670,14578',14135,28985,6,'4_1617095120_0.jpg,4_1617095136_0.jpg,4_1617095681_0.jpg,4_1617096385_0.jpg','4_banner_1614076319.jpg','[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-03-10 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2021-03-10 18:34:51','2021-03-10 00:00:00',1,1,'1','1','0','','','',NULL,'explore-kerala',NULL,NULL,NULL,0),(5,22434,1,5293,1,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22434,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_HIGHLIGHTS_74.jpg\",\"BookingValidUntill\":\"2021-04-10\",\"AdvBookingDays\":10,\"DETAILS\":\"<h3><span class="marker"><strong>DUBAI HIGHLIGHTS<\\/strong><\\/span><\\/h3>\\r\\n\\r\\n<p><strong>(5 Nights 6 Days)<\\/strong><\\/p>\\r\\n\\r\\n<p>04 nights&rsquo; accommodation in hotel grand excelsior<br \\/>\\r\\n01 night accommodation in Atlantis on half board basis<br \\/>\\r\\nDesert safari<br \\/>\\r\\nDubai city tour with burj khalifa + dhow cruise at marina<br \\/>\\r\\nMiracle garden with global village<\\/p>\\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\":\"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\":\"2021-03-26\",\"To\":\"2021-04-10\"},\"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\":\"<p>Blending traditional Arabic hospitality with modern day standards of comfort and service,<strong> Grand Excelsior Hotel Bur Dubai <\\/strong>is a luxurious option when in Dubai. Located just minutes from the city&#39;s business district and the <em>World Trade Center<\\/em>, 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&#39;s leisure facilities include a <em>rooftop swimming pool, health club, and spa<\\/em>. Whatever the reason for your stay, Grand Excelsior Hotel Bur Dubai will make it a good one.<\\/p>\\r\\n\\r\\n<p>Located in downtown Bur-Dubai within walking distance of the city’s popular historical districts and attractions including the <strong>Dubai Museum, Old Bastakiya Quarters, Grand Mosque and Heritage Village<\\/strong>. For leisure visitors, this family-friendly hotel’s location never fails to disappoint with <em>a number of souks and shopping malls, Meena bazaar, Dubai Museum, Dubai Creek, Dubai Mall, Burj Khalifa, Dubai Opera, Dubai Fram<\\/em>e within easy reach as well as the closest<strong> Dubai Metro Stations<\\/strong> providing easy access to other parts of the city. <strong>BurJuman Shopping Mall<\\/strong> and <strong>the new Gold Souk<\\/strong> are just minutes by car along with the colourful souks of Bur Dubai.<strong> Jumeirah Beach<\\/strong> is also just minutes away<\\/p>\\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\":\"Swimmin 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\":\"<p>On iconic Palm Jumeirah island in the <strong>Arabian Gulf<\\/strong>, this posh resort is 14 km from <strong>Wild Wadi Water Park<\\/strong> and 15 km from the upscale shops in <strong>the Mall of the Emirates<\\/strong>.<\\/p>\\r\\n\\r\\n<p>Cozy rooms have minibars, flat-screens and free Wi-Fi, as well as gulf or<strong> island views<\\/strong>. 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 <strong>views of marine life<\\/strong>. Room service is available 24\\/7.<\\/p>\\r\\n\\r\\n<p>There are <strong>23 restaurants, plus a spa, a gym & a water park<\\/strong>. Other amenities include an <strong>aquarium and a dolphin poo<\\/strong>l, along with a kids’ club and a <strong>nightclub<\\/strong>.<\\/p>\\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\":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&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: &ldquo;tallest structure&rdquo; and &ldquo;tallest free-standing structure&rdquo; other than the world&rsquo;s &ldquo;tallest building&rdquo;. The tower also holds world records for &lsquo;highest occupied floor&rsquo;, &lsquo;highest number of stories&rsquo;, &lsquo;longest travel distance elevators&rsquo;, &lsquo;tallest service elevator&rsquo; and &lsquo;second highest outdoor observatory deck&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&#039;s largest tourism, leisure, shopping and entertainment project. It is the region&#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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"160657\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":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\":\"<p>Evening is for the exciting <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'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\":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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/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\":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\":\"<p><strong>MIRACLE GARDEN<\\/strong><\\/p>\\r\\n\\r\\n<p>Visit the biggest flower garden ever built in Dubai: the Miracle Garden! <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's largest natural flower garden featuring over 50 million flowers and 250 million plants. <\\/p>\\r\\n\\r\\n<p><strong>GLOBAL VILLAGE <\\/strong><\\/p>\\r\\n\\r\\n<p>Global Village is known as the world's largest tourism.<br \\/>\\r\\nThe best of Global Village is region’s cultural and entertainment with unlimited fun, excitement and adventure. <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. <br \\/>\\r\\nThe food, the souvenirs, shopping, rides, and excitement all makes it a cosmopolitan and diverse experience for all. <\\/p>\\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\":\"<p>Inter Hotel Transfer to Atlantis & Day at Leisure in Atlantis.<\\/p>\\r\\n\\r\\n<p>Enjoy Aquaventure waterpark & Lost Chamber ( Subject to operational days & timings )<\\/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\":\"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\":\"<p>After Breakfast, Check out from Hotel. Private Transfer to drop at Airport.<\\/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\":\"22434\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39479.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":39479,\"priceDoubleOcc\":\"39479.00\",\"priceSingleOcc\":78958,\"priceExtraBed\":\"39479.00\",\"priceWithoutBed\":\"39479.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39479.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>04 Nights accommodation on double sharing basis at Grand Excelsior on Breakfast Basis<\\/li>\\r\\n\\t<li>01&nbsp;Nights accommodation on double sharing basis at Atlantis on Half Board Basis<\\/li>\\r\\n\\t<li>Meals as per hotel plan<\\/li>\\r\\n\\t<li>All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&nbsp;(until or unless specified Private in the itinerary)<\\/li>\\r\\n\\t<li>Road taxes, parking fees, fuel charges, interstate taxes<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"160657\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[160657],\"Remark\":[\"<p>Private Transfer from Airport to Hotel<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160658\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[160658],\"Remark\":[\"<p>Tour Transfer on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160659\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[160659],\"Remark\":[\"<p>Tour Transfers on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160660\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[160660],\"Remark\":[\"<p>Tour Transfers on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160661\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[160661],\"Remark\":[\"<p>Inter Hotel Transfer on PVT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160662\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[160662],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',39479,39479,5,'5_1616575711_0.jpg,5_1616575737_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-26 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2021-03-26 13:08:16','2021-03-26 00:00:00',1,1,'1','1','0','','','',NULL,'dubai-highlights',NULL,NULL,NULL,0),(6,23823,1,5293,1,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":23823,\"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\":\"<p><strong><span class="marker">CHARDHAM YATRA 2021 - BY ROAD<\\/span> (YAMUNOTRI, GANGOTRI, KEDARNATH &amp; BADRINATH<\\/strong><\\/p>\\r\\n\\r\\n<p><strong><span class="marker">TOUR STARTS: EX DELHI&nbsp;<\\/span>(Duration: 11 Nights\\/12 Days)<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><strong>HARIDWAR-BARKOT-YAMUNOTRI-UTTARKASHI-GANGOTRI-GUPTKASHI-KEDARNATH-BADRINATH-RUDRAPRAYAG-RISHIKESH-HARIDWAR<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>Attractions: <\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Ganga 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; Devprayag (Alaknanda River and Bhagirathi River).<\\/p>\\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-02-26\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477623,\"Name\":\"The Urmi Haridwar\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.988665\",\"Long\":\"78.1889734\",\"Address\":\"Bhupatwala, Near Shantikunj 71, Ganga Vihar Colony, Motichur, Haridwar, Uttarakhand 249410, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477624,\"Name\":\"Lakshya\'s Hotel\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9245791\",\"Long\":\"78.12949449999999\",\"Address\":\"Singh Dwar, Delhi Bypass Road, Near Gurukul Kangri University, Gurukul Kangri Vishwavidyalaya, Jagjeetpur, Haridwar, Uttarakhand 249408, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477625,\"Name\":\"Hotel GODWIN\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9855856\",\"Long\":\"78.18779219999999\",\"Address\":\"Motichur, Haridwar, Uttarakhand 249411, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477654,\"Name\":\"Lakshya\'s Hotel\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9245791\",\"Long\":\"78.12949449999999\",\"Address\":\"Singh Dwar, Delhi Bypass Road, Near Gurukul Kangri University, Gurukul Kangri Vishwavidyalaya, Jagjeetpur, Haridwar, Uttarakhand 249408, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34474,\"Title\":\"Barkot\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477626,\"Name\":\"shiv shakti eco resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9724227\",\"Long\":\"78.4366927\",\"Address\":\"Kharsali, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477627,\"Name\":\"Camp Nirvana\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8262126\",\"Long\":\"78.2502813\",\"Address\":\"Gangani, NH 123, Barkot, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"STANDARD CAMP\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477628,\"Name\":\"Rigveda Resort Barkot Yamunotri Uttarkashi\",\"Star\":\".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\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":28264,\"Title\":\"Uttarkashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477633,\"Name\":\"Hotel Bhagirathi Residency Netala\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.747845\",\"Long\":\"78.483254\",\"Address\":\"Netala, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477634,\"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\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477635,\"Name\":\"Hotel Great Ganga\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.75259999999999\",\"Long\":\"78.45364599999999\",\"Address\":\"30°45'09.4"N 78°27'13.1"E, Gangori, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"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\":\".00\",\"Rating\":\"3.60\",\"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\":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\":\".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\":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\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7310653\",\"Long\":\"79.0675742\",\"Address\":\"Kedarnath, Uttarakhand 246445, India\"},\"Images\":[],\"CityId\":13758,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"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\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7397701\",\"Long\":\"79.4948173\",\"Address\":\"Narayan Palace Rd, 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\":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\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.73722919999999\",\"Long\":\"79.49423519999999\",\"Address\":\"Plot No. 834, Chamoli District, 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\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34295,\"Title\":\"Rudraprayag\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477648,\"Name\":\"Tapovan Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.4069834\",\"Long\":\"79.3853475\",\"Address\":\"NH 58, Badrinath Rd, Birahi, Uttarakhand 246472, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"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'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\":477623,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477624,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477625,\"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\":477626,\"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\":477626,\"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 & Ashrams. Dinner and Overnight stay at Uttarkashi. <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477633,\"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'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 & Overnight stay at Uttarkashi.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477633,\"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 "Jai Bholenath." 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). <\\/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 'Abhishek’ 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'll start the return trek of 20 km from Kedarnath to Sonprayag. The vehicles wait for you in Sonprayag Car Parking and you’ll drive to your hotel\\/Camps. Dinner and Overnight at Guptkashi. <\\/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'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. <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477623,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477654,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477625,\"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. <\\/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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong><span style="color:black">GST @ 5 %\\/<\\/span><\\/strong><span style="color:black">Air Fare\\/Train Fare. <\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Meals other than those mentioned explicitly in the itinerary.&nbsp; <\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Personal expenses like portages, tips, laundry &amp; Rafting etc.&nbsp;&nbsp; <\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Any activity not mentioned in the inclusions &amp; Charges of palki, pony &amp; Helicopter tickets etc.<\\/span><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>SPECIAL FEATURES FOR YATRA JOURNEY<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Daily Sanitization of the vehicle done by the driver<\\/li>\\r\\n\\t<li>Face Mask<\\/li>\\r\\n\\t<li>Hand Sanitizer for the guest in the vehicle<\\/li>\\r\\n\\t<li>All Hotels provided in the journey follow the SOP&#39;s advised by the Government of India &amp; State Governments<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li><span style="color:black">2 <\\/span><span style="color:black">nights&rsquo; stay at hotel in Haridwar with MAP.<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">2 <\\/span><span style="color:black">nights&rsquo; stay in hotel in Barkot\\/Kharsali with MAP.<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">2 nights stay at hotel in Uttarkashi with MAP.<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">2 <\\/span><span style="color:black">nights&rsquo; stay in hotel in Guptkashi with MAP. <\\/span><\\/li>\\r\\n\\t<li><span style="color:black">1 <\\/span><span style="color:black">night&rsquo; stay in Kedarnath (Neat and clean GMVN camp on sharing basis\\/basic hotel accommodation, which is best available at Kedarnath with <strong>EP<\\/strong>)&nbsp; <\\/span><\\/li>\\r\\n\\t<li><span style="color:black">1 night&rsquo; stays at hotel in Badrinath with MAP.<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">1 <\\/span><span style="color:black">night&rsquo; stay at hotel Rudraprayag with MAP. &nbsp;&nbsp;<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Accommodation on twin\\/double sharing basis with Extra Bed\\/CWB &amp; CNB.<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Meals plan (MAP) - Breakfast &amp; Dinner: Veg meals on Fixed Menu basis at Hotels &amp; (<strong>EP<\\/strong>) only room basis at Kedarnath. &nbsp;<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Transfer &amp; Sightseeing by Ac Vehicle (A\\/c will switch off in Hills).<\\/span><\\/li>\\r\\n\\t<li><span style="color:black">Diver Allowance, Toll tax, parking Charges. <\\/span><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>DOCUMENTS REQUIRED FOR YATRA JOURNEY<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Aadhaar Card ( Front &amp; Back Copy )<\\/li>\\r\\n\\t<li>Contact Number incase of any emergency<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"170043\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[170043],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170046\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[170046],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170049\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[170049],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170052\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[170052],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170055\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[170055],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170058\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[170058],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170061\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[170061],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170064\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[170064],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170067\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[170067],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170070\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[170070],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170073\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[170073],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170076\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[170076],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170079\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[170079],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170082\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[170082],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170085\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[170085],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170088\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[170088],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170091\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[170091],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170094\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[170094],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170097\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[170097],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170100\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[170100],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','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-02-26 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2021-02-26 14:47:50','2021-02-26 00:00:00',1,1,'1','1','0','','','',NULL,'chardham-yatra-2021-by-road',NULL,NULL,NULL,0),(7,23713,1,5293,1,0,0,'Honeymoon,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":23713,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Essential_Kerala_56.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p>Embraced by the Malabar Coast, jotted by lush coconut groves and fringed by a network of canals, holidays in Kerala or God&#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.<\\/p>\\r\\n\",\"AdvBookingPercent\":20,\"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\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,B\\/fast & Dinner,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station\",\"Validity\":{\"From\":\"2021-03-10\",\"To\":\"2021-09-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\",\"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\",\"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\",\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477453,\"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\":5671,\"SupplierName\":\"CONTENTO TOURISM\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"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\",\"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\",\"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'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\",\"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\",\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"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\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"}]},\"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\",\"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 &lsquo;shoals&rsquo; &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\",\"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\",\"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 &#039;Pelton Wheel&#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\",\"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\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"169360\",\"Title\":\"Arrive Cochin \\u2013 Drive to Munnar\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Today arrive at Cochin International Airport. Meet and Greet by ‘<strong>I Need Trip<\\/strong>’ representative who will be waiting for you outside the arrival terminal. The representative will assist you to the cab assigned for you. Your 04 day tour in Kerala starts with your drive straight to Munnar. 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.<\\/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\":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\":\"<p>This morning after breakfast, set off to explore Munnar. Your visits for the day will feature the below places.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Eravikulam National Park (<span style=\\\"color:#0070c0\\\">Closed during Feb & March<\\/span>)<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Tea Museum<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Mattupetti Dam<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul style=\\\"list-style-type:square\\\">\\r\\n\\t<li><strong>Echo Point<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Later drive back to hotel.<\\/p>\\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\":\"<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\":\"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\":\"<p>Morning after breakfast drive to Thekkady aka Periyar. The destination is known for its Periyar Tiger Reserve. On arrival check in at the hotel.<\\/p>\\r\\n\\r\\n<p><em>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. <\\/em><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\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\":\"<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\":\"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 \\u2013 Allepey (190 kms \\/ 05 hrs)\\t [Breakfast, Lunch and Dinner\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Overnight stay on board houseboat.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":475547,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475547,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":456343,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":473992,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"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\":\"169384\",\"Title\":\"Alleppey - Cochin\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>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.<\\/p>\\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\":\"10615.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8122,\"priceDoubleOcc\":\"10615.00\",\"priceSingleOcc\":24365,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10615.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8122,\"priceDoubleOcc\":\"10615.00\",\"priceSingleOcc\":24365,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10615.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8122,\"priceDoubleOcc\":\"10615.00\",\"priceSingleOcc\":24365,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10615.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8122,\"priceDoubleOcc\":\"10615.00\",\"priceSingleOcc\":24365,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10615.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8378,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":24750,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10212,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":27500,\"priceExtraBed\":\"3135.00\",\"priceWithoutBed\":\"3135.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23714\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12430.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9735,\"priceDoubleOcc\":\"12430.00\",\"priceSingleOcc\":27940,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9735,\"priceDoubleOcc\":\"12430.00\",\"priceSingleOcc\":27940,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9735,\"priceDoubleOcc\":\"12430.00\",\"priceSingleOcc\":27940,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9735,\"priceDoubleOcc\":\"12430.00\",\"priceSingleOcc\":27940,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9992,\"priceDoubleOcc\":\"12815.00\",\"priceSingleOcc\":28325,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12815.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11788,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"4345.00\",\"priceWithoutBed\":\"4345.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23715\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14905.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11972,\"priceDoubleOcc\":\"14905.00\",\"priceSingleOcc\":32890,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11972,\"priceDoubleOcc\":\"14905.00\",\"priceSingleOcc\":32890,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11972,\"priceDoubleOcc\":\"14905.00\",\"priceSingleOcc\":32890,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11972,\"priceDoubleOcc\":\"14905.00\",\"priceSingleOcc\":32890,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":12265,\"priceDoubleOcc\":\"15345.00\",\"priceSingleOcc\":33330,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14025,\"priceDoubleOcc\":\"17985.00\",\"priceSingleOcc\":35970,\"priceExtraBed\":\"6105.00\",\"priceWithoutBed\":\"6105.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17985.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23716\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18865.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14685,\"priceDoubleOcc\":\"18865.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18865.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14685,\"priceDoubleOcc\":\"18865.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18865.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14685,\"priceDoubleOcc\":\"18865.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18865.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14685,\"priceDoubleOcc\":\"18865.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18865.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14942,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":41195,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16738,\"priceDoubleOcc\":\"21945.00\",\"priceSingleOcc\":43890,\"priceExtraBed\":\"6325.00\",\"priceWithoutBed\":\"6325.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21945.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Base category rooms are incorporated at all places.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Hotel rooms in Munnar and Thekkady are Non AC due to the climatic conditions<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p><strong>Deluxe houseboat will have AC from 2100 hrs to 0600 hrs. Cruise from 1200 noon to 1700 hrs and 0800 hrs to 0900 hrs<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p><strong><span style="color:red">Rates are not applicable during long weekends and festival days<\\/span><\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p><strong>GST if not mentioned in the rates<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Anything not mentioned under Package Inclusions.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Entrance fees at all monuments and sightseeing spots<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Airfare if not mentioned in the&nbsp;itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommended&nbsp;by I Need Trip)<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>Accommodation in Double&nbsp;sharing basis<\\/li>\\r\\n\\t<li>Meal plan as per package selection<\\/li>\\r\\n\\t<li>Transportation as per the program (AC Med car \\/ AC Innova \\/ AC Tempo)<\\/li>\\r\\n\\t<li>All transport related expense such as toll\\/parking, driver allowance, fuel, etc.<\\/li>\\r\\n\\t<li>All presently applicable taxes EXCEPT GST on total invoice<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong>NOTE<\\/strong><\\/ins>:<span style="color:#e74c3c"><strong> OPTIONAL UPGRADATION TO MAP MEAL PLAN AT AN ADDITIONAL COST OF INR 2200 PER PERSON<\\/strong><\\/span><\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"169360\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[169360],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169364\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169364],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}},\"169368\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169368],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169372\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169372],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169376\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169376],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169380\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169380],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169384\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169384],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"1\"]}}},\"AllowBookingType\":1}}','Munnar,Thekkady,Alleppey','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Cochin','','18697,27156,670',10615,21945,4,'7_1615463489_0.jpg,7_1615463504_0.jpg,7_1615463535_0.jpg,7_1615463547_0.jpg',NULL,NULL,2,'',0,'2021-03-10 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2021-03-10 18:39:31','2021-03-10 00:00:00',1,1,'1','1','0','','','',NULL,'essential-kerala',NULL,NULL,NULL,0),(8,2275,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2275\",\"VisaName\":\"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\":\"\",\"DocFileName1\":null,\"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\":\"<h3>Documents required for Dubai visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Scanned colour copy of your pan card<\\/li>\\r\\n\\t<li>Scanned colour copy of the first and last page of your passport<\\/li>\\r\\n\\t<li>Passport should be valid for at least 6 months<\\/li>\\r\\n\\t<li>Scanned colour copy of your passport-size photograph taken against a white background<\\/li>\\r\\n\\t<li>Confirmed return air ticket (not mandatory for application)<\\/li>\\r\\n<\\/ul>\",\"BasicRequirementsText\":\"<h3>Additional documents required for Dubai Transit visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Confirmed return&nbsp;<a href='http:\\/\\/in.musafir.com\\/Flights\\/Default.aspx'>air tickets<\\/a><\\/li>\\r\\n\\t<li>Visa copy of the country you are travelling to<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><strong>Note:<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><strong>We do not provide Dubai work \\/ job \\/ employment visa.<\\/strong><\\/li>\\r\\n\\t<li>Dubai visa price doesn&#39;t includes OK to Board charges.<\\/li>\\r\\n\\t<li>Please provide the flight ticket copies 48 hours prior to your departure to update Ok to board.<\\/li>\\r\\n\\t<li>Scanned copy of your documents should be in .jpeg format.<\\/li>\\r\\n\\t<li><a name='faq16'>Visitor Profiles likely not to be accepted.<\\/a>\\r\\n\\t<p>&bull; Applicants with professions like - house helps, housekeepers, tailors, etc<br \\/>\\r\\n\\t&bull;&nbsp;ECR passport holders<br \\/>\\r\\n\\t&bull;&nbsp;If your passport has been signed in hindi or any other regional language<br \\/>\\r\\n\\t&bull;&nbsp;Thumb impression on the passport<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"\",\"VisaValidity\":\"48\",\"VisaDuration\":\"48\",\"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\":\"<p>Scanned Pan Card<\\/p>\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"<p>Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm<\\/p>\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"<p><span style='color:black'>Original Passport (<\\/span>&nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)<\\/p>\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',1850,1850,0,'8_',NULL,NULL,0,'',0,'2021-03-11 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2021-03-11 11:57:59','2021-03-11 00:00:00',1,1,'1','1','0','a','cf','cfe',NULL,'48-hours-transit-visa','[{\"question\":\"how to ckeck \",\"answer\":\"jhnjjjjjj\"}]',NULL,NULL,0),(9,2274,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2274\",\"VisaName\":\"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\":\"\",\"DocFileName1\":null,\"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\":\"<h3>Documents required for Dubai visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Scanned colour copy of your pan card<\\/li>\\r\\n\\t<li>Scanned colour copy of the first and last page of your passport<\\/li>\\r\\n\\t<li>Passport should be valid for at least 6 months<\\/li>\\r\\n\\t<li>Scanned colour copy of your passport-size photograph taken against a white background<\\/li>\\r\\n\\t<li>Confirmed return air ticket (not mandatory for application)<\\/li>\\r\\n<\\/ul>\",\"BasicRequirementsText\":\"<h3>Additional documents required for Dubai Transit visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Confirmed return&nbsp;<a href='http:\\/\\/in.musafir.com\\/Flights\\/Default.aspx'>air tickets<\\/a><\\/li>\\r\\n\\t<li>Visa copy of the country you are travelling to<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>Note:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><strong>We do not provide Dubai work \\/ job \\/ employment visa.<\\/strong><\\/li>\\r\\n\\t<li>Dubai visa price doesn&#39;t includes OK to Board charges.<\\/li>\\r\\n\\t<li>Please provide the flight ticket copies 48 hours prior to your departure to update Ok to board.<\\/li>\\r\\n\\t<li>Scanned copy of your documents should be in .jpeg format.<\\/li>\\r\\n\\t<li><a name='faq16'>Visitor Profiles likely not to be accepted.<\\/a>\\r\\n\\t<p>&bull; Applicants with professions like - house helps, housekeepers, tailors, etc<br \\/>\\r\\n\\t&bull;&nbsp;ECR passport holders<br \\/>\\r\\n\\t&bull;&nbsp;If your passport has been signed in hindi or any other regional language<br \\/>\\r\\n\\t&bull;&nbsp;Thumb impression on the passport<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"\",\"VisaValidity\":\"96\",\"VisaDuration\":\"96\",\"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\":\"<p>Scanned Pan Card<\\/p>\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"<p>Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm<\\/p>\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"<p><span style='color:black'>Original Passport (<\\/span>&nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)<\\/p>\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',4000,4000,0,'1616063078.jpg',NULL,NULL,0,'',0,'2021-02-26 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2021-02-26 00:00:00','2021-02-26 00:00:00',1,1,'1','1','0','','','',NULL,'96-hours-transit-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(10,2273,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2273\",\"VisaName\":\"90 Days Single Entry\",\"Nationality\":null,\"VisaAdultRates\":16250,\"VisaChildRates\":16250,\"VisaInfantRates\":16250,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"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\":\"<h3>Documents required for Dubai visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Scanned colour copy of your pan card<\\/li>\\r\\n\\t<li>Scanned colour copy of the first and last page of your passport<\\/li>\\r\\n\\t<li>Passport should be valid for at least 6 months<\\/li>\\r\\n\\t<li>Scanned colour copy of your passport-size photograph taken against a white background<\\/li>\\r\\n\\t<li>Confirmed return air ticket (not mandatory for application)<\\/li>\\r\\n<\\/ul>\",\"BasicRequirementsText\":\"<h3>Additional documents required for Dubai Transit visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Confirmed return&nbsp;<a href='http:\\/\\/in.musafir.com\\/Flights\\/Default.aspx'>air tickets<\\/a><\\/li>\\r\\n\\t<li>Visa copy of the country you are travelling to<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>Note:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><strong>We do not provide Dubai work \\/ job \\/ employment visa.<\\/strong><\\/li>\\r\\n\\t<li>Dubai visa price doesn&#39;t includes OK to Board charges.<\\/li>\\r\\n\\t<li>Please provide the flight ticket copies 48 hours prior to your departure to update Ok to board.<\\/li>\\r\\n\\t<li>Scanned copy of your documents should be in .jpeg format.<\\/li>\\r\\n\\t<li><a name='faq16'>Visitor Profiles likely not to be accepted.<\\/a>\\r\\n\\t<p>&bull; Applicants with professions like - house helps, housekeepers, tailors, etc<br \\/>\\r\\n\\t&bull;&nbsp;ECR passport holders<br \\/>\\r\\n\\t&bull;&nbsp;If your passport has been signed in hindi or any other regional language<br \\/>\\r\\n\\t&bull;&nbsp;Thumb impression on the passport<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"\",\"VisaValidity\":\"90\",\"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\":\"<p>Scanned Pan Card<\\/p>\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"<p>Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm<\\/p>\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"<p><span style='color:black'>Original Passport (<\\/span>&nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)<\\/p>\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',16250,16250,0,'10_',NULL,NULL,0,'',0,'2021-02-26 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2021-02-26 00:00:00','2021-02-26 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'90-days-single-entry',NULL,NULL,NULL,0),(11,2272,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2272\",\"VisaName\":\"30 Days Single Entry \",\"Nationality\":null,\"VisaAdultRates\":5750,\"VisaChildRates\":5750,\"VisaInfantRates\":5750,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"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\":\"<h3>Documents required for Dubai visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Scanned colour copy of your pan card<\\/li>\\r\\n\\t<li>Scanned colour copy of the first and last page of your passport<\\/li>\\r\\n\\t<li>Passport should be valid for at least 6 months<\\/li>\\r\\n\\t<li>Scanned colour copy of your passport-size photograph taken against a white background<\\/li>\\r\\n\\t<li>Confirmed return air ticket (not mandatory for application)<\\/li>\\r\\n<\\/ul>\",\"BasicRequirementsText\":\"<h3>Additional documents required for Dubai Transit visa application<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Confirmed return&nbsp;<a href='http:\\/\\/in.musafir.com\\/Flights\\/Default.aspx'>air tickets<\\/a><\\/li>\\r\\n\\t<li>Visa copy of the country you are travelling to<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>Note:<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><strong>We do not provide Dubai work \\/ job \\/ employment visa.<\\/strong><\\/li>\\r\\n\\t<li>Dubai visa price doesn&#39;t includes OK to Board charges.<\\/li>\\r\\n\\t<li>Please provide the flight ticket copies 48 hours prior to your departure to update Ok to board.<\\/li>\\r\\n\\t<li>Scanned copy of your documents should be in .jpeg format.<\\/li>\\r\\n\\t<li><a name='faq16'>Visitor Profiles likely not to be accepted.<\\/a>\\r\\n\\t<p>&bull; Applicants with professions like - house helps, housekeepers, tailors, etc<br \\/>\\r\\n\\t&bull;&nbsp;ECR passport holders<br \\/>\\r\\n\\t&bull;&nbsp;If your passport has been signed in hindi or any other regional language<br \\/>\\r\\n\\t&bull;&nbsp;Thumb impression on the passport<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"\",\"VisaValidity\":\"30\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"1500.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\":\"<p>Scanned Pan Card<\\/p>\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"<p>Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm<\\/p>\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"<p><span style='color:black'>Original Passport (<\\/span>&nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)<\\/p>\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',5750,5750,0,'1614335352.jpg,11_',NULL,NULL,0,'',0,'2021-02-26 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2021-02-26 00:00:00','2021-02-26 00:00:00',1,1,'1','1','0','ineedtrip1','ineedtrip2','ineedtrip3',NULL,'30-days-single-entry','[{\"question\":\"kjhklj4\",\"answer\":\"fff5\"}]',NULL,NULL,0),(12,22734,1,5293,0,0,0,'Adventure,Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":22734,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SPECTACULAR_SOUTH_AFRICA_-_10_DAYS_80.jpg\",\"BookingValidUntill\":\"2021-08-31\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><big><span class="marker"><strong>SPECTACULAR SOUTH AFRICA<\\/strong><\\/span><\\/big><br \\/>\\r\\n<big><strong>9 Nights 10 Days<\\/strong><br \\/>\\r\\n(Cape Town &ndash; Oudtshoorn &ndash; Knysna &ndash; George &ndash; Johannesburg &ndash; Sun City &ndash; Kruger - Johannesburg)<\\/big><\\/p>\\r\\n\",\"AdvBookingPercent\":20,\"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 - 10 DAYS\",\"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\":\"2021-03-16\",\"To\":\"2021-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5069,\"Title\":\"Cape Town\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475919,\"Name\":\"Garden Court Nelson Mandela Boulevard\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.9345733\",\"Long\":\"18.4474376\",\"Address\":\"Corner Melbourne and Coronation Road &, Melbourne Rd, Walmer Estate, Cape Town, 8001, South Africa\"},\"Images\":[],\"CityId\":5069,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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 “Ostrich Country” 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\":475921,\"Name\":\"Queen\'s Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.5916\",\"Long\":\"22.2026\",\"Address\":\"Eden, Baron Van Reede St, St, Oudtshoorn, 6625, South Africa\"},\"Images\":[],\"CityId\":20426,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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 “Ostrich Country” 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\":475923,\"Name\":\"The Graywood Hotel\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-34.0378311\",\"Long\":\"23.0463123\",\"Address\":\"Eden, Trotter St, Knysna Central, Knysna, 6571, South Africa\"},\"Images\":[],\"CityId\":14261,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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 “Ostrich Country” 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\":475924,\"Name\":\"Cabanas\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-25.34842399999999\",\"Long\":\"27.102453\",\"Address\":\"Sun City Resort, R556, Sun City, 0316, South Africa\"},\"Images\":[],\"CityId\":26381,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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 “Ostrich Country” 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\":475925,\"Name\":\"aha Casa do Sol Hotel & Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-25.0484704\",\"Long\":\"31.0809753\",\"Address\":\"Sabie Rd, R536, Hazyview, 1242, South Africa\"},\"Images\":[],\"CityId\":14524,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"HB\"}]},\"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 “Ostrich Country” 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}]}}]},\"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\":\"<p>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.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475919,\"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\":\"162774\",\"Title\":\"Cape Town - City Tour : After breakfast leave on a half-day Mother City tour. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>You will go for a scenic coastal drive through Clifton & Sea Point & later tour passes the Houses of Parliament, the Castle, the SA Museum, and a few other historical sights – District Six, Bo-Kaap, Slave Lodge & ending at the bustling Greenmarket Square. 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. <\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475919,\"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\":\"162775\",\"Title\":\"Cape Town - Peninsula Tour : Breakfast is taken at the hotel. Depart on a full day Peninsula tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p> <\\/p>\\r\\n\\r\\n<p>This comprehensive tour shows you the best of the spectacular Cape Peninsula and why it is it'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 “Flying Dutchman” 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's Town and know about the legend of “Able Seaman Just Nuisance” the Great Dane Dog that was inducted in Royal Navy. Return to the hotel.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475919,\"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\":7668,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162776\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\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 \\u2013 Oudtshoorn : After breakfast, check and transfer to Oudtshoorn. It is known as the \\u2018Feather Capital of the World\\u2019 thanks to its huge ostrich industry.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>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.<\\/p>\\r\\n\\r\\n<p>Check into hotel and spend rest of evening in the comfort of your hotel.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475921,\"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\":4930,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18477,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162778\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\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\":\"<p>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’s most spectacular natural wonders <\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Enjoy an amazing view of the imposing sandstone ‘Heads’ which guard the sea entrance to Knysna’s huge tidal lagoon, and the forests, marshes and pristine beaches surrounding it.<\\/p>\\r\\n\\r\\n<p>Evening, you check into the hotel.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14261,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475923,\"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\":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\":\"<p>0<\\/p>\\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 \\u2013 George - Johannesburg - Sun City \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<h3>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.<\\/h3>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel <\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475924,\"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\":\"162782\",\"Title\":\"Sun City : After breakfast you will enjoy your day at leisure. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>Optional game drives to Pilanesberg Nature Reserve to see the Big 5 (cost of the game drive is not included)<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel <\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475924,\"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\":\"162783\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\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\":\"<p>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 – The Big 5 and bird life in its numerous habitats. 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. 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. <\\/p>\\r\\n\\r\\n<p>Arrive and check in the lodge.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel <\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475925,\"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\":\"162785\",\"Title\":\" Kruger National Park\\t\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p>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.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel <\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475925,\"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\":[{\"IsIncluded\":true,\"Id\":18479,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162786\",\"Title\":\"Kruger National Park - Johannesburg \",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"<p>After breakfast, transfer to Or Tambo International for flight back home.<\\/p>\\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\":\"72506.87\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":93718,\"priceDoubleOcc\":\"72506.87\",\"priceSingleOcc\":99651.01,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72506.87\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":96168,\"priceDoubleOcc\":\"76182.10\",\"priceSingleOcc\":103326.24,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"76182.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":99458,\"priceDoubleOcc\":\"81117.39\",\"priceSingleOcc\":108261.53,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"81117.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":104359,\"priceDoubleOcc\":\"88467.83\",\"priceSingleOcc\":115611.97,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88467.83\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":115629,\"priceDoubleOcc\":\"105373.85\",\"priceSingleOcc\":132517.99,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"105373.85\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":136141,\"priceDoubleOcc\":\"136140.71\",\"priceSingleOcc\":163284.84999999998,\"priceExtraBed\":\"136140.71\",\"priceWithoutBed\":\"54708.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"136140.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>The above prices are subject to availability of flights and hotel accommodation and services at the time of processing the reservation.<\\/li>\\r\\n\\t<li>The quote is based on the above hotels and any change will impact the cost. Long week-ends &amp; school holidays in SA may attract a supplement.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>Full day vehicle is 8-9 hrs and half &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.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>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<\\/li>\\r\\n\\t<li>The prices are nett with all bank charges to your account.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>We must receive the above nett quoted amounts in our bank, whether the amount transferred is in Dollar or Rand.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>Some hotels may not allow children below a certain age and some hotels don&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<\\/li>\\r\\n\\t<li>Most hotels consider children above 12 years as adults and charged accordingly<\\/li>\\r\\n\\t<li>It is very important to check the child policy while requesting for a hotel<\\/li>\\r\\n\\t<li>In South Africa, triple rooms are mostly higher category rooms and cost more than standard double\\/twin. Some hotels don&rsquo;t allow triple sharing.<\\/li>\\r\\n\\t<li>Cancellations 30-day prior to the client&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.<\\/li>\\r\\n\\t<li>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<p>&nbsp;<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All flights, porterage and tips, mineral water, laundry, telephone or any other expense personal in nature.<\\/li>\\r\\n\\t<li>Personal Insurance, we strongly suggest that the passenger&rsquo;s take out their own insurance before departing for South Africa.<\\/li>\\r\\n\\t<li>Drinks and lunches\\/dinner except where mentioned<\\/li>\\r\\n\\t<li>Items of a personal nature, driver and guide gratuities<\\/li>\\r\\n\\t<li>All entrance fees and excursions not mentioned above<\\/li>\\r\\n\\t<li>Porterage at hotels and airports<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>Meet and Greet Representation at the Airport<\\/li>\\r\\n\\t<li>Full day &ldquo;Cape Peninsula&rdquo; &amp; a half-day &ldquo;Mother City&rdquo; Tour in Cape Town<\\/li>\\r\\n\\t<li>Accommodation in standard rooms in above or similar on bed &amp; breakfast basis and dinner, bed and breakfast in Kruger<\\/li>\\r\\n\\t<li>All transfers &amp; sightseeing is on Private basis in an air-conditioned luxury vehicle.<\\/li>\\r\\n\\t<li>Day visit to Cango Caves and Wildlife Ranch, Ostrich Farm and a cruise on the vast Knysna Lagoon.<\\/li>\\r\\n\\t<li>All entrance fees as per the itinerary with Table Mountain Cable car ride.<\\/li>\\r\\n\\t<li>Full day Game drive in Kruger<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162773\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162773],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162774\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162774],\"Remark\":[\"<p>TOUR ON PVT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162775\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162775],\"Remark\":[\"<p>TOUR ON PVT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162776\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162776],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162777\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162777],\"Remark\":[\"<p>TOUR ON PVT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162778\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162778],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162779\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162779],\"Remark\":[\"<p>TOURS ON PVT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162780\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162780],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162781\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162781],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162782\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[162782],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162783\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[162783],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162784\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[162784],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162785\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[162785],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162786\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[162786],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','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',72507,136141,9,'12_1615468654_0.jpg,12_1615468693_0.jpg,12_1615468704_0.jpg,12_1615468716_0.jpg',NULL,NULL,2,'',0,'2021-03-16 00:00:00','2021-08-31 00:00:00','2021-08-31 00:00:00',3,'South Africa','195','2021-03-16 18:37:37','2021-03-16 00:00:00',1,1,'1','1','0','','','',NULL,'spectacular-south-africa-10-days',NULL,NULL,NULL,0),(13,22719,1,5293,1,0,0,'Adventure,Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":22719,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SPECTACULAR_SOUTH_AFRICA_-_7_DAYS_63.jpg\",\"BookingValidUntill\":\"2021-08-31\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><strong><big><span class="marker">SPECTACULAR SOUTH AFRICA&nbsp;<\\/span><\\/big><\\/strong><\\/p>\\r\\n\\r\\n<p><strong><big>6 Nights 7 Days<\\/big><\\/strong><\\/p>\\r\\n\\r\\n<p><big>(Cape Town &ndash; Johannesburg &ndash; Sun City - Johannesburg)<\\/big><\\/p>\\r\\n\",\"AdvBookingPercent\":20,\"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\":\"2021-03-19\",\"To\":\"2021-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5069,\"Title\":\"Cape Town\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475903,\"Name\":\"Garden Court Nelson Mandela Boulevard\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.9345733\",\"Long\":\"18.4474376\",\"Address\":\"Corner Melbourne and Coronation Road &, Melbourne Rd, Walmer Estate, Cape Town, 8001, South Africa\"},\"Images\":[],\"CityId\":5069,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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\":475904,\"Name\":\"Cabanas\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-25.34842399999999\",\"Long\":\"27.102453\",\"Address\":\"Sun City Resort, R556, Sun City, 0316, South Africa\"},\"Images\":[],\"CityId\":26381,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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\":475905,\"Name\":\"Centurion Lake Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-25.8566196\",\"Long\":\"28.19067339999999\",\"Address\":\"1001 Lenchen Ave N, Centurion Central, Centurion, 0046, South Africa\"},\"Images\":[],\"CityId\":13189,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"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}]}}]},\"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\":\"<p>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.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475903,\"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\":\"162689\",\"Title\":\"Cape Town : After breakfast leave on a half-day Mother City tour. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>You will go for a scenic coastal drive through Clifton & Sea Point & later tour passes the Houses of Parliament, the Castle, the SA Museum, and a few other historical sights – District Six, Bo-Kaap, Slave Lodge & ending at the bustling Greenmarket Square. 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. <\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475903,\"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\":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\":\"<p>This comprehensive tour shows you the best of the spectacular Cape Peninsula and why it is it'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 “Flying Dutchman” 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's Town and know about the legend of “Able Seaman Just Nuisance” the Great Dane Dog that was inducted in Royal Navy. Return to the hotel.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475903,\"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\":7668,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162691\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\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\":\"<p>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.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at Hotel <\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475904,\"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\":\"162693\",\"Title\":\"Sun City : Day at Leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast you will enjoy your day at leisure.<\\/p>\\r\\n\\r\\n<p>Optional game drives to Pilanesberg Nature Reserve to see the Big 5 (cost of the game drive is not included)<\\/p>\\r\\n\\r\\n<p>Overnight at Hotel <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475904,\"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\":\"162694\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\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\":\"<h3>Where you will see reconstruction of Johannesburg during the Gold Rush era, built around a mine. Activities include a Victorian fun fair, miners' houses, brewery, pubs, restaurants and stock exchange. You can watch molten gold being poured and take a trip down an old mine shaft. Tribal dancing adds to the fun. Return to hotel.<\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Overnight at hotel<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13189,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475905,\"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\":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\":\"<p>After breakfast, transfer to Or Tambo International for flight back home <\\/p>\\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\":\"43052.59\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":52066,\"priceDoubleOcc\":\"43052.59\",\"priceSingleOcc\":65103.92,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43052.59\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":53116,\"priceDoubleOcc\":\"44627.69\",\"priceSingleOcc\":66679.02,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44627.69\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":54866,\"priceDoubleOcc\":\"47252.85\",\"priceSingleOcc\":69304.18,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47252.85\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":56616,\"priceDoubleOcc\":\"49878.00\",\"priceSingleOcc\":71929.33,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49878.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":60816,\"priceDoubleOcc\":\"56178.39\",\"priceSingleOcc\":78229.72,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56178.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":70092,\"priceDoubleOcc\":\"70091.73\",\"priceSingleOcc\":92143.06,\"priceExtraBed\":\"70091.73\",\"priceWithoutBed\":\"23888.94\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70091.73\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>The above prices are subject to availability of flights and hotel accommodation and services at the time of processing the reservation.<\\/li>\\r\\n\\t<li>The quote is based on the above hotels and any change will impact the cost. Long week-ends &amp; school holidays in SA may attract a supplement.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>Full day vehicle is 8-9 hrs and half &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.<\\/li>\\r\\n\\t<li>&nbsp;<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>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<\\/li>\\r\\n\\t<li>The prices are nett with all bank charges to your account.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>We must receive the above nett quoted amounts in our bank, whether the amount transferred is in Dollar or Rand.<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>Some hotels may not allow children below a certain age and some hotels don&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<\\/li>\\r\\n\\t<li>Most hotels consider children above 12 years as adults and charged accordingly<\\/li>\\r\\n\\t<li>It is very important to check the child policy while requesting for a hotel<\\/li>\\r\\n\\t<li>In South Africa, triple rooms are mostly higher category rooms and cost more than standard double\\/twin. Some hotels don&rsquo;t allow triple sharing.<\\/li>\\r\\n\\t<li>Cancellations 30-day prior to the client&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.<\\/li>\\r\\n\\t<li>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.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All flights, porterage and tips, mineral water, laundry, telephone or any other expense personal in nature.<\\/li>\\r\\n\\t<li>Personal Insurance, we strongly suggest that the passenger&rsquo;s take out their own insurance before departing for South Africa.<\\/li>\\r\\n\\t<li>Drinks and lunches\\/dinner except where mentioned<\\/li>\\r\\n\\t<li>Items of a personal nature, driver and guide gratuities<\\/li>\\r\\n\\t<li>All entrance fees and excursions not mentioned above<\\/li>\\r\\n\\t<li>Porterage at hotels and airports<\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n\\t<li>&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>Meet and Greet Representation at the Airport<\\/li>\\r\\n\\t<li>Full day &ldquo;Cape Peninsula&rdquo; &amp; a half-day &ldquo;Mother City&rdquo; Tour in Cape Town<\\/li>\\r\\n\\t<li>Accommodation in standard rooms in above or similar on bed &amp; breakfast basis<\\/li>\\r\\n\\t<li>All transfers &amp; sightseeing is on Private basis in an air conditioned luxury vehicle.<\\/li>\\r\\n\\t<li>All entrance fees as per the itinerary with Table Mountain Cable car ride.<\\/li>\\r\\n\\t<li>A guided tour to Gold Reef City with a qualified English guide.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162688\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162688],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162689\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162689],\"Remark\":[\"<p>TOUR ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162690\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162690],\"Remark\":[\"<p>TOUR ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162691\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162691],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162692\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162692],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162693\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162693],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162694\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162694],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162695\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162695],\"Remark\":[\"<p>TOUR ON PVT BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162696\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[162696],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Cape Town,Sun City,Johannesburg','Cape Town,Southern Africa,South Africa,Sun City,Johannesburg','','5069,26381,13189',43053,70092,6,'13_1615466650_0.jpg,13_1615466662_0.jpg,13_1615466675_0.jpg,13_1615466685_0.jpg',NULL,NULL,2,'',0,'2021-03-19 00:00:00','2021-08-31 00:00:00','2021-08-31 00:00:00',3,'South Africa','195','2021-03-19 16:46:48','2021-03-19 00:00:00',1,1,'1','1','0','','','',NULL,'spectacular-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\":\"<h3><span style="color:#e74c3c"><big><strong>CELEBRATE HOLI IN MALDIVES<\\/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>PCR Requirement on Arrival:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Please note that all inbound tourists&nbsp;<strong>must present a negative PCR test result<\\/strong>&nbsp;<strong>and document must be in English<\\/strong>. 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.<\\/p>\\r\\n\\r\\n<p>Please refer to the link -&nbsp;<a href="https:\\/\\/imuga.immigration.gov.mv\\/" target="_blank">https:\\/\\/imuga.immigration.gov.mv\\/<\\/a><\\/p>\\r\\n\\r\\n<p><span class="marker">&nbsp;<strong>PCR Requirement on Departure:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Guests who require testing for departure from Maldives should inform the resort on-arrival to make the arrangements.<\\/p>\\r\\n\\r\\n<p>&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&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&rsquo;s departure.&nbsp;<strong>PCR testing will be chargeable at USD 150 nett per person, per test<\\/strong>&nbsp;and shall be charged to guest account. Payment will be collected upon arrival to the resort.<\\/p>\\r\\n\\r\\n<p>&nbsp;Please be informed that testing laboratories in Maldives requires pre appointment hence we will require to send us the&nbsp;<strong>passport copies of the guests&nbsp;<\\/strong>to prepare the request for the PCR testing schedule if applicable.<\\/p>\\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 <\\/strong><\\/big><\\/span><\\/h3>\\r\\n\\r\\n<p><strong>The Residence Maldives Dhigurah<\\/strong><strong> 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 & 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’ 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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\\r\\n<p><strong><span class="marker">For cancellations for any other reason than a positive PCR test the following policy remains in place<\\/span><\\/strong><\\/p>\\r\\n\\r\\n<p><span style="color:#e74c3c"><strong>*There will be no refund on early departure except in the case of emergency and it is subject to RESORT&rsquo;s decision.<\\/strong>&nbsp;<\\/span><\\/p>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 48&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>All Inclusive 4 Nights Stay<\\/li>\\r\\n\\t<li>Live Bollywood Night ( Parlin Gill )<\\/li>\\r\\n\\t<li>High Tea with Indian Snacks<\\/li>\\r\\n\\t<li>DJ Night with dinner on beach<\\/li>\\r\\n\\t<li>Movies under the sky<\\/li>\\r\\n\\t<li>Celebrate Holi with Aqua Zumba on the beach<\\/li>\\r\\n\\t<li>All Meals<\\/li>\\r\\n\\t<li>Return Airport Transfers in Maldives ( Dom Flight + Speed Boat )<\\/li>\\r\\n\\t<li>Unlimited Alcoholic &amp; Non-Alcoholic Beverages ( Glenfiddich 12 years, Absolute, Bacardi Oro Gold, JW Black Label etc )<\\/li>\\r\\n\\t<li>Complimentary 60mins SPA for Adults<\\/li>\\r\\n\\t<li>Complimentary Non-Motorised water sport activities<\\/li>\\r\\n\\t<li>All Taxes &amp; much more ( Green Tax )<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"171002\":[{\"Sequence\":[0],\"TPInvnSysId\":[171002],\"Remark\":[\"<p>DOMESTIC FLIGHT + SPEED BOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171005\":[{\"Sequence\":[0],\"TPInvnSysId\":[171005],\"Remark\":[\"<p>DOMESTIC FLIGHT + SPEED BOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171008\":[{\"Sequence\":[0],\"TPInvnSysId\":[171008],\"Remark\":[\"<p>DOMESTIC FLIGHT + SPEED BOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171011\":[{\"Sequence\":[0],\"TPInvnSysId\":[171011],\"Remark\":[\"<p>DOMESTIC FLIGHT + SPEED BOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171014\":[{\"Sequence\":[0],\"TPInvnSysId\":[171014],\"Remark\":[\"<p>DOMESTIC FLIGHT + SPEED BOAT<\\/p>\"],\"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','2021-03-19 13:30:45','2021-03-19 00:00:00',1,1,'1','1','0','testkeyward','description','test',NULL,'holi-special-the-residence-maldives-dhigurah',NULL,NULL,NULL,0),(15,24249,1,5293,1,0,0,'Honeymoon,Family,Romantic,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":24249,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/MAGNIFICENT_RUSSIA_6.jpg\",\"BookingValidUntill\":\"2021-05-17\",\"AdvBookingDays\":10,\"DETAILS\":\"<h3><small><big><span class="marker"><strong>FIXED DEPARTURE -&nbsp;MAGNIFICENT RUSSIA<\\/strong><\\/span><\\/big><\\/small><\\/h3>\\r\\n\\r\\n<p><strong><big><small>Travel Dates : 11th May 2021 to 17 May 2021 ( 6N\\/7D )<\\/small><\\/big><\\/strong><\\/p>\\r\\n\\r\\n<p>&bull; 03 Nights Stay in Moscow&nbsp;<br \\/>\\r\\n&bull; 03 Nights Stay in Saint Petersburg&nbsp;<br \\/>\\r\\n&bull; 06 Buffet Breakfast in the Hotel<br \\/>\\r\\n&bull; 01 Welcome Dinner with Belly dance show<br \\/>\\r\\n&bull; Moscow City Tour Incl. ESG<br \\/>\\r\\n&bull; Metro Ride Incl. Guide + Entrance fees<br \\/>\\r\\n&bull; Saint Petersburg City Tour Incl. ESG<br \\/>\\r\\n&bull; Kazan Cathedral Incl. Guide<br \\/>\\r\\n&bull; Airport &amp; Train Station Return Transfers<br \\/>\\r\\n&bull; VISA Invitation Letter (for tourist visa purpose only)<br \\/>\\r\\n&bull; Registration Fees in Saint Petersburg<br \\/>\\r\\n&bull; Sapsan 2nd class train ticket from MOW-SPB or SPB- MOW (One Way)<br \\/>\\r\\n&bull; 24*7 Assistance in English &amp; Russian<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"AdvBookingPercent\":20,\"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\":\"2021-03-25\",\"To\":\"2021-05-17\"},\"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\":\"<p>The <strong>4-star Vega Izmailovo Hotel Moscow<\\/strong> is set 2.2 km from St. Nikolay Church at Preobrazhensk Cemetery and 0.6 km from The Kremlin in Izmailovo. Featuring <strong>972 rooms<\\/strong> with views of the street, this venue is set within a short ride from Izmailovsky Park.<\\/p>\\r\\n\\r\\n<p>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 <strong>Musuem of Bread.<\\/strong><\\/p>\\r\\n\\r\\n<p>Certain rooms include <strong>soundproof windows and smoke detectors<\\/strong>. It offers a microwave oven, an electric kettle and refrigerators along with hypoallergenic pillows and linens.<\\/p>\\r\\n\\r\\n<p>Start your day with a delicious breakfast.<\\/p>\\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\":\"Swimmin 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\":\"BB\"}]},\"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’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’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’s Convent and Moscow State University.\\r\\n\\r\\nThe tour doesn’t stop there as you get taken to Sparrow Hills’ 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&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\":\"<p>The Park Inn by Radisson Pulkovskaya Hotel & 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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001111001\",\"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\":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\":\"BB\"}]},\"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’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’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’s Convent and Moscow State University.\\r\\n\\r\\nThe tour doesn’t stop there as you get taken to Sparrow Hills’ 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&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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"173373\",\"Title\":\"Arrival in Moscow & 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\":\"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\":\"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\":\"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\":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\":\"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\":8891,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173376\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\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 & 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\":\"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\":\"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\":\"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\":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\":\"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\":18852,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173380\",\"Title\":\"Checkout from Hotel & 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\":\"37911.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":37912,\"priceDoubleOcc\":\"37911.50\",\"priceSingleOcc\":75823,\"priceExtraBed\":\"37911.50\",\"priceWithoutBed\":\"37911.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37911.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<p><br \\/>\\r\\n&bull; 03 Nights in Moscow on twin sharing basis (Hotel lzmailovo Vega 4*)<br \\/>\\r\\n&bull; 03 Nights in Saint Petersburg on twin sharing basis (Hotel Park Inn SPB 4*)<br \\/>\\r\\n&bull; 06 Buffet Breakfast in the Hotel<br \\/>\\r\\n&bull; 01 Welcome Dinner with Belly dance show<br \\/>\\r\\n&bull; Moscow City Tour Incl. ESG<br \\/>\\r\\n&bull; Metro Ride Incl. Guide + Entrance fees<br \\/>\\r\\n&bull; Saint Petersburg City Tour Incl. ESG<br \\/>\\r\\n&bull; Kazan Cathedral Incl. Guide<br \\/>\\r\\n&bull; Transfer from APT - HTL - APT<br \\/>\\r\\n&bull; Transfer from HTL - RLY - HTL<br \\/>\\r\\n&bull; VISA Invitation Letter (for tourist visa purpose only)<br \\/>\\r\\n&bull; Registration Fees in Saint Petersburg<br \\/>\\r\\n&bull; Sapsan 2nd class train ticket from MOW-SPB or SPB- MOW (One Way)<br \\/>\\r\\n&bull; 24*7 Assistance in English &amp; Russian<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"173373\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[173373],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173374\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173374],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173375\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[173375],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"173376\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173376],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173377\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173377],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173378\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[173378],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173379\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[173379],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173380\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[173380],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Moscow,Saint Petersburg','Moscow,Eastern Europe,Russia,Saint Petersburg,Russian Federation','','18488,23644',37912,37912,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,'2021-03-25 00:00:00','2021-05-17 00:00:00','2021-05-17 00:00:00',3,'Russia,Russian Federation','507,181','2021-03-25 14:52:16','2021-03-25 00:00:00',1,1,'1','1','0','','','',NULL,'magnificent-russia',NULL,NULL,NULL,0),(16,24259,1,5293,1,0,0,'Honeymoon,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24259,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Maldives_at_Centara_Ras_Fushi_Resort_-Spa_56.jpg\",\"BookingValidUntill\":\"2021-04-05\",\"AdvBookingDays\":14,\"DETAILS\":\"<p>At Centara Ras Fushi Resort &amp; Spa Maldives<\\/p>\\r\\n\\r\\n<p>Set on a pristine island in North Male&rsquo; Atoll, just over 15 minutes away from Male&rsquo; International Airport (Velana International Airport) by speedboat, Centara Ras Fushi Resort &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.<\\/p>\\r\\n\\r\\n<p>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&rsquo; most sought-after diving spots. Giraavaru Cave and Kuda Haa are 5 minutes away, while Lion&rsquo;s Head Kiki Reef (Hans Haas Place) and Shark Point approximately 15 minutes away; complemented by the PADI Dive Centre.<\\/p>\\r\\n\\r\\n<p>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&rsquo; every need, for a more unbridled holiday<\\/p>\\r\\n\",\"AdvBookingPercent\":50,\"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\":\"2021-03-18\",\"To\":\"2021-04-05\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478765,\"Name\":\"Centara Ras Fushi Resort & Spa Maldives\",\"Star\":\".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\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"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\":478765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":478765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":478765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":478765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":478765,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":\"2750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2750,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":5500,\"priceExtraBed\":\"2750.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.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\":\"24259\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2625.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-06\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":2625,\"priceDoubleOcc\":\"2625.00\",\"priceSingleOcc\":5250,\"priceExtraBed\":\"2625.00\",\"priceWithoutBed\":\"2625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>\\r\\n\\t<p>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Also note that few service providers (Hoteliers, Transporter 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)<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<ul>\\r\\n\\t<li>\\r\\n\\t<p>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p><strong>GST if not mentioned in the rates<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Anything not mentioned under Package Inclusions.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Entrance fees at all monuments and sightseeing spots<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Airfare if not mentioned in the&nbsp;itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>04 Nights accommodation on twin sharing basis as per itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Meals as per hotel plan<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Road taxes, parking fees, fuel charges, interstate taxes<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Complimentary&nbsp;PCR Test in Maldives ( Min 04 night stay )<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Complimentary Covid Policy Covering Stay<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"173486\":[{\"Sequence\":[0],\"TPInvnSysId\":[173486],\"Remark\":[\"<p>Return Speed Boat Transfers Included<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"173487\":[{\"Sequence\":[0],\"TPInvnSysId\":[173487],\"Remark\":[\"<p>Return Speed Boat Transfers Included<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"173488\":[{\"Sequence\":[0],\"TPInvnSysId\":[173488],\"Remark\":[\"<p>Return Speed Boat Transfers Included<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"173489\":[{\"Sequence\":[0],\"TPInvnSysId\":[173489],\"Remark\":[\"<p>Return Speed Boat Transfers Included<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"173490\":[{\"Sequence\":[0],\"TPInvnSysId\":[173490],\"Remark\":[\"<p>Return Speed Boat Transfers Included<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',2625,2750,4,'16_1615296750_0.jpg,16_1615296762_0.jpg,16_1615296762_1.jpg,16_1615296762_2.jpg',NULL,NULL,2,'',0,'2021-03-18 00:00:00','2021-04-05 00:00:00','2021-04-05 00:00:00',3,'Maldives','133','2021-03-25 16:22:38','2021-03-18 00:00:00',1,1,'0','0','0','Keywordc','Descriptionws','Multi',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\":\"<h3><span class="marker"><strong>HOLI PACKAGE (28TH MARCH 2021 - 30TH MARCH 2021)<\\/strong><\\/span><\\/h3>\\r\\n\\r\\n<p><big><strong>Digantaa Resort<\\/strong><\\/big> 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. <big><strong>Digantaa Resort <\\/strong><\\/big>is basically a <strong>spa and golf resort, <\\/strong>located near<strong> Dhanachuli, Mukteshwar, Uttarakhand.<\\/strong><br \\/>\\r\\n&quot;The Philosophy of <strong>Digantaa Resort<\\/strong> is inspired by Ancient Indian Ayurvedic Tradition of<em><strong> Panchmahabhoot<\\/strong><\\/em> &ndash; Shabd (Sound), Sparsh (Touch), Roop (Vision), Gandh (Smell) and Ras (Taste).&quot; The unique balance between all these five great elements ensures the required balance between &lsquo;Mana&rsquo; (Mind), &lsquo;Tana&rsquo; (Body) and &lsquo;Atman&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.<\\/p>\\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>" Stay at Digantaa Resort is a unique experience. Exquisitely designed wooden cottages present you with the most luxurious and comfortable living."<\\/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 <\\/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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommended&nbsp;by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>Buffet Breakfast, Lunch &amp; Dinner at designated venue.&nbsp;<\\/li>\\r\\n\\t<li>HI-tea with Cookies<\\/li>\\r\\n\\t<li>Trekking with in the resort<\\/li>\\r\\n\\t<li>Complimentary Outdoor games &amp; Indoor games<\\/li>\\r\\n\\t<li>Complimentary two bottles of mineral water<\\/li>\\r\\n\\t<li>In-room-&nbsp;Tea \\/ Coffee maker<\\/li>\\r\\n\\t<li>Wi-Fi Connection<\\/li>\\r\\n\\t<li>Access to Indoor heated Swimming Pool &nbsp;(swimming Costume mandatory<\\/li>\\r\\n\\t<li>Holi Celebration with Organic colour with snacks<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><strong>Kids Below 7 year is comp above 7 -12years 25% Of the room package &nbsp;and above 12 years 35% of the room package<\\/strong><\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any r&nbsp;Buffet Breakfast, Lunch &amp; Dinner at designated venue.&nbsp;<br \\/>\\r\\n\\tHI-tea with Cookies<br \\/>\\r\\n\\tTrekking with in the resort<br \\/>\\r\\n\\tComplimentary Outdoor games &amp; Indoor games<br \\/>\\r\\n\\tComplimentary two bottles of mineral water<br \\/>\\r\\n\\tIn-room-&nbsp;Tea \\/ Coffee maker<br \\/>\\r\\n\\tWi-Fi Connection<br \\/>\\r\\n\\tAccess to Indoor heated Swimming Pool &nbsp;(swimming Costume mandatory<br \\/>\\r\\n\\tHoli Celebration with Organic colour with snacks<br \\/>\\r\\n\\tKids Below 7 year is comp above 7 -12years 25% Of the room package &nbsp;and above 12 years 35% of the room packaevise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"174819\":[{\"Sequence\":[0],\"TPInvnSysId\":[174819],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}],\"174822\":[{\"Sequence\":[0],\"TPInvnSysId\":[174822],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}],\"174825\":[{\"Sequence\":[0],\"TPInvnSysId\":[174825],\"Remark\":[\"<p><br><\\/p>\"],\"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-03-15 12:37:47','2021-03-15 00:00:00',1,1,'1','1','0','','','',NULL,'radiant-holi-in-digantaa-resort',NULL,NULL,NULL,0),(18,24395,1,5293,1,0,0,'Honeymoon,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24395,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Andaman_Honeymoon_Package_7.jpg\",\"BookingValidUntill\":\"2021-04-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><span class="marker"><strong>ANDAMAN HONEYMOON PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>6 Nights 7 Days<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>06 Nights accommodation in mentioned hotels<\\/li>\\r\\n\\t<li>Daily Breakfast in hotel\\/resort on the fixed menu<\\/li>\\r\\n\\t<li>Enjoy Sound and Light Show at Cellular Jail<\\/li>\\r\\n\\t<li>Visit Corbyn&#39;s Cove Beach<\\/li>\\r\\n\\t<li>Visit Elephant beach with ferry ticket at Havelock Island<\\/li>\\r\\n\\t<li>Visit Bharatpur Beach\\/Sitapur Beach\\/Natural Bridge in Neil Island<\\/li>\\r\\n\\t<li>Entry\\/Ferry Tickets at sightseeing places<\\/li>\\r\\n\\t<li>To and Fro Private Ferry Tickets to Neil Island and Havelock<\\/li>\\r\\n\\t<li>Transfers at Neil Island and Havelock in a AC Sumo\\/Scorpio\\/Eeco<\\/li>\\r\\n\\t<li>All Excursions in a general ferry<\\/li>\\r\\n\\t<li>All applicable taxes<\\/li>\\r\\n<\\/ul>\\r\\n\",\"AdvBookingPercent\":20,\"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\":\"2021-03-30\",\"To\":\"2021-04-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\":\"<p>Welcome to <strong>Hotel ShompenHotel Shompen<\\/strong> - 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.<\\/p>\\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\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn's Cove Beach\",\"Description\":\"The Corbyn&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&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&#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'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\":\"<p>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.<\\/p>\\r\\n\\r\\n<p>Set exclusively on the world famous Beach No.2, also known as Govind Nagar, <strong>APARUPA Sands Marina– A beach resort in Havelock,<\\/strong> is the best place in terms of beach view, transportation, luxury, food and hospitality.<\\/p>\\r\\n\\r\\n<p>Our passion is to provide you with the best service, be the best there is and stay ecological and environment friendly.<\\/p>\\r\\n\\r\\n<p>Surrounded in Acers, the resort consists of<strong> 32 elegantly designed cottages<\\/strong> (16 executive-Clusters and 16 Deluxe- Sea view) with spacious interiors, modern amenities and suited bathrooms.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\":\"Swimmin 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\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn's Cove Beach\",\"Description\":\"The Corbyn&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&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&#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'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 & 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\":\"<p>Aquays Hotels & Resorts is beautiful place situated at Neil Island. The most popular beach here is just on walkable distance.<br \\/>\\r\\nThe resort has it&#39;s own restaurant which serves Indian, Chinese, Continental and other delicious sea foods.<br \\/>\\r\\nWe have a great team who can cater to your needs and make your trip more memorable and exicting.<\\/p>\\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\":\"Swimmin 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\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn's Cove Beach\",\"Description\":\"The Corbyn&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&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&#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'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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"174828\",\"Title\":\"Arrival at Port Blair Airport and Transfer to Hotel\",\"MealPlanInclude\":\"\",\"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. <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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 & Visit to Corbyn\'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\":\"BB\",\"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\":\"BB\",\"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\":\"<p>0<\\/p>\\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\":\"<p><span style=\\\"color:#44546a\\\">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's Best Beach "<strong>Radhanagar Beach<\\/strong> (Beach No.7).<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478923,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<ul>\\r\\n\\t<li>Morning, Breakfast and proceed for “Elephant Beach” also known as Coral Beach.<\\/li>\\r\\n\\t<li>Elephant beach is popular for Snorkelling and other water-based activities such as Jet Ski ride, Banana Ride, Sea Walk.<\\/li>\\r\\n\\t<li>Usually boat operators provide a 5-minute snorkelling experience complimentary, however the same cannot be guaranteed<\\/li>\\r\\n\\t<li>You reach Elephant beach via small 11 pax capacity sharing basis boat board at jetty<\\/li>\\r\\n\\t<li>You will be allotted a time for boat a day before and you need to get ready accordingly<\\/li>\\r\\n\\t<li>Do not forget to carry a water bottle, snacks and changing cloths.<\\/li>\\r\\n\\t<li>Important: In case Elephant Beach is not operational due to weather conditions OR Covid reasons, we will provide a trip to “Kala Patthar Beach” OR We can refund the applicable amount. <\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478923,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>0<\\/p>\\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\":\"<ol>\\r\\n\\t<li>Morning, Breakfast & proceed to jetty for onward journey to Neil Island<\\/li>\\r\\n\\t<li>Arrival, Meet- Greet by our local representative and transfer to your booked hotel\\/ Resort<\\/li>\\r\\n\\t<li>Afternoon, proceed to visit the following places:<\\/li>\\r\\n\\t<li><strong><span style=\\\"color:#002060\\\">Bharatpura Beach:<\\/span><\\/strong> The white sand and shallow water beach is popular for swim, relaxation, and water activities such as Snorkelling, Boat diving and boat tour.<\\/li>\\r\\n\\t<li><strong><span style=\\\"color:#002060\\\">Sitapur beach<\\/span><\\/strong><\\/li>\\r\\n\\t<li><strong><span style=\\\"color:#002060\\\">Natural Bridge:<\\/span><\\/strong> Also known as Howrah Bridge the bridge has naturally formed by corals, its best seen during the low tide (**Subject to weather conditions).<\\/li>\\r\\n\\t<li>Sightseeing will be based on tide and local representative will brief the final schedule<\\/li>\\r\\n<\\/ol>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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 & 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\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"22000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommended&nbsp;by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>06 Nights accommodation in mentioned hotels<\\/li>\\r\\n\\t<li>Daily Breakfast in hotel\\/resort on the fixed menu<\\/li>\\r\\n\\t<li>Enjoy Sound and Light Show at Cellular Jail<\\/li>\\r\\n\\t<li>Visit Corbyn&#39;s Cove Beach<\\/li>\\r\\n\\t<li>Visit Elephant beach with ferry ticket at Havelock Island<\\/li>\\r\\n\\t<li>Visit Bharatpur Beach\\/Sitapur Beach\\/Natural Bridge in Neil Island<\\/li>\\r\\n\\t<li>Entry\\/Ferry Tickets at sightseeing places<\\/li>\\r\\n\\t<li>To and Fro Private Ferry Tickets to Neil Island and Havelock<\\/li>\\r\\n\\t<li>Transfers at Neil Island and Havelock in a AC Sumo\\/Scorpio\\/Eeco<\\/li>\\r\\n\\t<li>All Excursions in a general ferry<\\/li>\\r\\n\\t<li>All applicable taxes<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"174828\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[174828],\"Remark\":[\"<p>Transfers by AC Sumo<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174829\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[174829],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174830\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[174830],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174831\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[174831],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174832\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[174832],\"Remark\":[\"<p>Transfer by Ferry<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174833\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[174833],\"Remark\":[\"<p>Transfers in a AC Sumo\\/Eeco\\/Scorpio<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174834\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[174834],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174835\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[174835],\"Remark\":[\"<p>Transfer to Neil Island by Ferry & Sightseeing in a AC Sumo\\/Scorpio\\/Eeco<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174836\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[174836],\"Remark\":[\"<p>Transfer by Ferry to Port Blair & By Cab to Airport<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"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',22000,22000,6,'18_1615464369_0.jpg,18_1615464388_0.jpg,18_1615464397_0.jpg,18_1615464404_0.jpg',NULL,NULL,2,'',0,'2021-03-30 00:00:00','2021-04-30 00:00:00','2021-04-30 00:00:00',3,'India','101','2021-03-30 18:33:38','2021-03-30 00:00:00',1,1,'1','1','0','','','',NULL,'andaman-honeymoon-package',NULL,NULL,NULL,0),(19,24480,1,5293,0,0,0,'Honeymoon,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24480,\"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\":\"<p><span class="marker"><strong>SOULMATE SPECIAL - DUBAI PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>(5 Nights 6&nbsp;Days)<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Welcome Amenities<\\/li>\\r\\n\\t<li>Guaranteed high floor with sea view rooms<\\/li>\\r\\n\\t<li>01 Candle-light dinner at Al Dawaar Restaurant (Dubai&#39;s Only Revolving Restaurant)<\\/li>\\r\\n\\t<li>Early check-in at 11:00 AM and late check-out till 04:00 PM (subject to availability)<\\/li>\\r\\n\\t<li>Guaranteed room upgrade to Club Rooms with Cocktail Hours and Light Dinner from 06:00 PM - 08:00 PM<\\/li>\\r\\n<\\/ul>\\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\":\"2021-03-25\",\"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\":[],\"CityId\":8219,\"Brief\":\"<h1> <\\/h1>\\r\\n\\r\\n<p><span style="color:#282828">An iconic five star hotel in a city that has no equal<\\/span><\\/p>\\r\\n\\r\\n<p><span style="color:#282828">Hyatt Regency Dubai is in the heritage heart of the city – 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.<\\/span><\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111100001111001\",\"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\":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\":\"Dhow Cruise Dinner Marina\",\"Description\":\"<p>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!<br><\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"175410\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":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\":\"<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 <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\":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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"<p>Evening is for the exciting <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'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\":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\":\"<p>After all it’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 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\":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 & Back to India\",\"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\":\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>5 nights&rsquo; accommodation in Hyatt Regency Deira<\\/li>\\r\\n\\t<li>Daily breakfast<\\/li>\\r\\n\\t<li>Dubai city tour<\\/li>\\r\\n\\t<li>Marina dhow cruise with dinner<\\/li>\\r\\n\\t<li>Desert safari with BQQ dinner<\\/li>\\r\\n\\t<li>Burj Khalifa 124th floor per person non-primetime with transfer<\\/li>\\r\\n\\t<li>Rates are valid for minimum of 2 pax<\\/li>\\r\\n\\t<li>All transfer will be on sharing basis except Airport Transfer<\\/li>\\r\\n\\t<li>Rates are inclusive of all local taxes and VAT except Tourism Dirhams.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>ADDITIONAL INCLUSIONS<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Welcome Amenities<\\/li>\\r\\n\\t<li>Guaranteed high floor with sea view rooms<\\/li>\\r\\n\\t<li>01 Candle-light dinner at Al Dawaar Restaurant (Dubai&#39;s Only Revolving Restaurant)<\\/li>\\r\\n\\t<li>Early check-in at 11:00 AM and late check-out till 04:00 PM (subject to availability)<\\/li>\\r\\n\\t<li>Guaranteed room upgrade to Club Rooms with Cocktail Hours and Light Dinner from 06:00 PM - 08:00 PM<br \\/>\\r\\n\\t&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"175410\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[175410],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175411\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[175411],\"Remark\":[\"<p>Tour Transfer on Sharing Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175412\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[175412],\"Remark\":[\"<p>Tour Transfers on Sharing Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175413\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[175413],\"Remark\":[\"<p>Tour Transfer on Sharing Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175414\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[175414],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175415\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[175415],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','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,'2021-03-25 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2021-03-25 14:24:25','2021-03-25 00:00:00',1,1,'1','1','0','','','',NULL,'soulmate-special',NULL,NULL,NULL,0),(20,22707,1,5293,1,0,0,'Honeymoon',NULL,1,1,0,'{\"package\":{\"TPId\":22707,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_PREMIUM_HONEYMOON_PACKAGE__43.jpg\",\"BookingValidUntill\":\"2021-03-31\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><span class="marker"><strong>PREMIUM HONEYMOON PACKAGE&nbsp;<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>4 Nights &amp; 5 Days&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<p>One voucher of Lunch or Dinner for couple at Nine7One Restaurant in Oberoi Hotel (3 Course Set Menu)<br \\/>\\r\\nOne Souvenir per couple<br \\/>\\r\\nComplimentary Sparkling Wine bottle<br \\/>\\r\\nHoneymoon special amenities upon arrival<\\/p>\\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\":\"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\":\"2021-03-30\",\"To\":\"2021-03-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\":\"<p>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 is famed for its spectacular skyline and the iconic Burj Khalifa, which towers over the city at 2,722 feet (830 metres), making it the tallest building in the world.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\":\"Swimmin 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\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Tour\",\"Description\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"162626\",\"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 & 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\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<p>Evening is for the exciting <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'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\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"<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\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"48950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-15\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":48950,\"priceDoubleOcc\":\"48950.00\",\"priceSingleOcc\":97900,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"48950.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><strong>Rates calculated 01 USD = INR 74.50 as on 28 Jan 2021.<\\/strong><\\/li>\\r\\n\\t<li>Above rates will not be valid during any peak period.<\\/li>\\r\\n\\t<li>All Transfers will be as mentioned above.<\\/li>\\r\\n\\t<li>Rates are inclusive of all local taxes and VAT except Tourism Fee.<\\/li>\\r\\n\\t<li>We are not holding any rooms, rooms will be on subject to availability at the time of actual booking.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>04 Nights stay with breakfast at hotel<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers - Private basis<\\/li>\\r\\n\\t<li>Half Day Modern Dubai Tour with visit to Man-made Bluewaters Island - Private basis<\\/li>\\r\\n\\t<li>Desert Safari with dinner - Deluxe Camp with Butler service - Sharing basis<\\/li>\\r\\n\\t<li>Canal Cruise with dinner - Private transfers<\\/li>\\r\\n\\t<li>Visit to Dubai Mall with entrance to Burj Khalifa 124th Floor (Standard time) + Dubai Lake Fountain Ride - Private transfers<\\/li>\\r\\n\\t<li>One voucher of Lunch or Dinner for couple at Nine7One Restaurant in Oberoi Hotel (3 Course Set Menu)<\\/li>\\r\\n\\t<li>One Souvenir per couple<\\/li>\\r\\n\\t<li>Complimentary Sparkling Wine bottle<\\/li>\\r\\n\\t<li>Honeymoon special amenities upon arrival<br \\/>\\r\\n\\t&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162626\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162626],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162627\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162627],\"Remark\":[\"<p>Tour on Private basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162628\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162628],\"Remark\":[\"<p>Tour on Sharing basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162629\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162629],\"Remark\":[\"<p>Tour on Private basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162630\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162630],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',48950,48950,4,'20_1615812969_0.jpg,20_1615813126_0.jpg,20_1615814550_0.jpg',NULL,NULL,2,'',0,'2021-03-30 00:00:00','2021-03-31 00:00:00','2021-03-31 00:00:00',3,'United Arab Emirates','228','2021-03-30 18:39:08','2021-03-30 00:00:00',1,1,'1','1','0','','','',NULL,'premium-honeymoon-package',NULL,NULL,NULL,0),(21,24534,1,5293,1,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24534,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/BASIC_DUBAI_PACKAGE_67.jpg\",\"BookingValidUntill\":\"2021-04-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><big><strong><span class="marker">BASIC HOLIDAY&nbsp;PACKAGE<\\/span><\\/strong><\\/big><\\/p>\\r\\n\\r\\n<p><big><strong>5 Nights 6 Days&nbsp;<\\/strong><\\/big><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Accommodation<\\/li>\\r\\n\\t<li>Daily Breakfast<\\/li>\\r\\n\\t<li>Airport Transfers<\\/li>\\r\\n\\t<li>Sightseeing Tours and&nbsp;Transfers<\\/li>\\r\\n<\\/ul>\\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\":\"BASIC HOLIDAY 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,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2021-03-26\",\"To\":\"2021-04-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479594,\"Name\":\"Hampton by Hilton Dubai Airport\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Damascus Street Al Qusais Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817901,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479594\\/5293_01616488064.jpg\"}]},\"CityId\":8219,\"Brief\":\"<p>The <strong>Hampton by Hilton Dubai Airport <\\/strong>is a brand-new, contemporary hotel <strong>close to Dubai International Airpor<\\/strong>t. We offer easy access to all Dubai has to offer, including <strong>Burj Khalifa and Dubai Mall<\\/strong>. Our hotel rooms are fresh and modern spaces, with a mini-fridge, tea and coffee making facilities, and a work desk with ergonomic chair. Feel rested after a great night’s sleep.<\\/p>\\r\\n\\r\\n<p>Our hotel is <strong>six kilometers from Dubai International Airport,<\\/strong> with a free pre-scheduled shuttle to terminals 2 and 3 and Dubai Airport Free Zone. Enjoy free WiFi, fitness center access, and our outdoor pool. Daily hot breakfast is free and we have an all-day restaurant, bar, and <strong>24-hour snack hub.<\\/strong><\\/p>\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479594\\/5293_86e2f532382fcb1cd5a6efce441f0f8d1616488064.jpg\",\"AccoAminitiesMask\":\"1111100010000001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Queen Room ( Base Category)\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479543,\"Name\":\"FOUR POINTS BY SHERATON DOWNTOWN DUBAI\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817906,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479543\\/5293_01616502611.jpg\"}]},\"CityId\":8219,\"Brief\":\"<p>Set in the heart of historic Dubai, Four Points by Sheraton Downtown Dubai on Mankhool Road provides the ideal home base for business and leisure travelers. Just 15 minutes from Dubai International Airport, our Bur Dubai hotel also is walking distance to the Khalid Bin Waleed metro station and near The Dubai Mall, Meena Bazaar, The Dubai Fountain and Burj Khalifa. Recharge in large hotel rooms and suites with Four Points by Sheraton Four Comfort Beds, mini-refrigerators, relaxed reading chairs, spacious desks and complimentary Wi-Fi. Our suites benefit from kitchenettes and grocery shopping services, ideal for traveling families and extended stays. Work out in our well-equipped gym, take a refreshing dip in our rooftop pool and savor the culinary treats in our three on-site restaurants. For those planning small to mid-sized business meetings or receptions, you&#39;ll appreciate our versatile venues. Whether you are in Dubai for work or fun, you&#39;ll enjoy a great stay at Four Points by Sheraton Downtown Dubai.<\\/p>\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479543\\/5293_c862a08483af40da2327d428b89cdf351616502611.jpg\",\"AccoAminitiesMask\":\"1111111010101111001\",\"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\":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\":\"Guest Room\",\"MealTypeName\":\"BB\"},{\"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\":\"<p>Connect with Dubai’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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18418,\"Title\":\"Dhow Cruise Dinner Creek\",\"Description\":\"<p>Cruising down Dubai creek is a serene experience, a great way to take in all that the creek has to offer is on board a traditional Arabian wooden Dhow. Iconic views paired with delectable cuisine and great service makes this a must visit when in Dubai. Sip on a refreshing welcome drink as you sail through the very heart of the city, with the charm of Bur Dubai’s Middle Eastern Architecture to the southwest of the creek and the sophisticated glittering skyline of Deira Dubai to the North-East. While you are enamored by the stunning views, you can feast on an indulgent dinner buffet consisting of specialty delicacies and desserts and enjoy live Tanura song and dance performances.<\\/p><p>A Dhow cruise on the Dubai creek is a must when you visit Dubai- it’s the perfect collaboration of great food, live performances and beautiful views of the city by night.<\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18440,\"Title\":\"Global Village\",\"Description\":\"<p>Open for just 6 months of the year, from October to April, Global Village is a colossal coming together of tourism, leisure and entertainment. This festival park that attracts over five million people each year brings together cultures from around the world. Stroll from London’s<\\/p><p>Big Ben to the leaning tower of Pisa in Italy, take Selfies against the romantic backdrop of the Taj Mahal or travel back in time to Ancient Egypt. There’s so much to enjoy with more than 75 countries displaying traditional handicrafts and snacks across 30 pavilions. Children and adults alike will delight in the bright lights and lively atmosphere created by parades, plays, and all kinds of shows, from fire-breathing street performances to break dancing and musicals. There’s even more fun to be had with over 50 games and thrilling rides at the region’s largest funfair.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18439,\"Title\":\"Miracle Garden\",\"Description\":\"<p>Discover more than 150 million blooming flowers in stunning designs and shapes in every size and colour you can imagine at Dubai’s groundbreaking Miracle Garden located in Dubai land. See the world’s longest wall of flowers admire sculptures of UAE landmarks made entirely from flowers and taking the powerful aromas of medicinal plants from more than 200 countries.<\\/p><p>Miracle Garden has won many accolades over the years including 2 Guinness World Records. Open from mid-November to mid-May, every year Dubai Miracle Garden Reinvents itself bringing new designs and concepts to visitors. Marvel At the huge flower clock made out of real plants and flowers, with a changeable design depending on the season. Take a relaxing stroll through lake-park that combines colourful flowers and water fountains to create stunning displays or walk through the beautifully constructed hearts passage that makes for great pictures. For Disney lovers, Miracle Garden now houses Disney characters made entirely out of flowers.<\\/p><p>Dubai Miracle Garden spread over 72000 sqm of land, provides state of the art services and facilities to its visitors and it’s a must visit destination when in Dubai.<\\/p>\",\"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\":\"175679\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":479594,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479543,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"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\":\"175682\",\"Title\":\"Creek Dhow Cruise in the evening\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<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\":479594,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479543,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"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\":18418,\"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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479594,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479543,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"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\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175688\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>Evening is for the exciting <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'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\":479594,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479543,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"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\":\"175691\",\"Title\":\"Miracle Garden with Global Village \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p><strong>MIRACLE GARDEN<\\/strong><\\/p>\\r\\n\\r\\n<p>Visit the biggest flower garden ever built in Dubai: the Miracle Garden! <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's largest natural flower garden featuring over 50 million flowers and 250 million plants. <\\/p>\\r\\n\\r\\n<p><strong>GLOBAL VILLAGE <\\/strong><\\/p>\\r\\n\\r\\n<p>Global Village is known as the world's largest tourism.<br \\/>\\r\\nThe best of Global Village is region’s cultural and entertainment with unlimited fun, excitement and adventure. <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. <br \\/>\\r\\nThe food, the souvenirs, shopping, rides, and excitement all makes it a cosmopolitan and diverse experience for all. <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479594,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479543,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"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\":18440,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18439,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175694\",\"Title\":\"Departure to Dubai Airport & Back to India\",\"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\":\"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\":\"19387.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":19388,\"priceDoubleOcc\":\"19387.50\",\"priceSingleOcc\":38775,\"priceExtraBed\":\"19387.50\",\"priceWithoutBed\":\"19387.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19387.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24535\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20212.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20213,\"priceDoubleOcc\":\"20212.50\",\"priceSingleOcc\":40425,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"20212.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20212.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24536\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23512.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-16\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":23513,\"priceDoubleOcc\":\"23512.50\",\"priceSingleOcc\":47025,\"priceExtraBed\":\"23512.50\",\"priceWithoutBed\":\"23512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>5 Nights Accommodation<\\/li>\\r\\n\\t<li>Daily &nbsp;Breakfast<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfer<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Desert Safari With BBQ&nbsp;Dinner<\\/li>\\r\\n\\t<li>Creek Dhow Cruise With Dinner<\\/li>\\r\\n\\t<li>Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show<\\/li>\\r\\n\\t<li>Miracle Garden + Global Village &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/li>\\r\\n\\t<li>All Transfer Will Be On Sharing Basis, Except Airport Transfers.<\\/li>\\r\\n\\t<li>Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"175679\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[175679],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175682\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[175682],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175685\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[175685],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175688\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[175688],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175691\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[175691],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175694\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[175694],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',19388,23513,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,'2021-03-26 00:00:00','2021-04-30 00:00:00','2021-04-30 00:00:00',3,'United Arab Emirates','228','2021-03-26 17:57:29','2021-03-26 00:00:00',1,1,'1','1','0','','','',NULL,'basic-holiday-package',NULL,NULL,NULL,0),(22,2437,3,5293,0,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&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: &ldquo;tallest structure&rdquo; and &ldquo;tallest free-standing structure&rdquo; other than the world&rsquo;s &ldquo;tallest building&rdquo;. The tower also holds world records for &lsquo;highest occupied floor&rsquo;, &lsquo;highest number of stories&rsquo;, &lsquo;longest travel distance elevators&rsquo;, &lsquo;tallest service elevator&rsquo; and &lsquo;second highest outdoor observatory deck&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\":\"2021-01-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"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\":\"\",\"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\"}','Dubai','Dubai,United Arab Emirates',NULL,'8219',0,0,0,'Burj_Khalifa_8219_1517481430.jpg',NULL,NULL,0,'',0,'2021-03-18 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2021-03-18 00:00:00','2021-03-18 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,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,'23_1616407011_0.jpg',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','2021-03-18 00:00:00','2021-03-18 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0),(24,22820,1,5293,0,0,0,'Honeymoon,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22820,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_LUXURY_HONEYMOON_PACKAGE_27.jpg\",\"BookingValidUntill\":\"2021-04-10\",\"AdvBookingDays\":10,\"DETAILS\":\"<p><span class="marker"><strong>AFFLUENT HONEYMOON PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>5 Nights 6 Days&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Honeymoon Freebies - Red Velvet Cake + Bottle of Sparkling Wine + Chocolate Box<\\/li>\\r\\n\\t<li>Airport Transfers by LEXUS<\\/li>\\r\\n\\t<li>1 Hour Limousine Ride<\\/li>\\r\\n\\t<li>1 Hour Yacht Ride<\\/li>\\r\\n\\t<li>Premium Desert Safari with Dinner at&nbsp;Al Hadheerah Restaurant in&nbsp;Bab Al Shams Desert Resort<\\/li>\\r\\n\\t<li>Many more Inclusions&nbsp;<\\/li>\\r\\n<\\/ul>\\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\":\"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\":\"2021-03-30\",\"To\":\"2021-04-10\"},\"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\":\"<p><br \\/>\\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’s dynamic Business Bay district, 16 km near to the Dubai International Airport. With Hollywood-themed rooms, Californian inspired cuisine and unequivocal entertainment, it’s time to script your own story at the Paramount Hotel Dubai.<\\/p>\\r\\n\\r\\n<p>Set in the modern Business Bay district, this sleek hotel with an<strong> Old Hollywood theme is 3 km from the Dubai Mall, 10 km from Jumeirah Beach and 14 km from Dubai International Airport.<\\/strong><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Dining options include 2 restaurants, 2 bars, a patisserie and a relaxed cafe. There’s also a spa, an outdoor pool, a gym and a screening room. Breakfast is available.<\\/p>\\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\":\"Swimmin 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\":\"BB\"},{\"RefHotelId\":479711,\"Name\":\"Lapita Dubai Parks And Resorts Autograph Collection\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Dubai Parks & 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\":\"<p>With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND™ Dubai, LEGOLAND® Water Park, LEGOLAND® Dubai, MOTIONGATE™ Dubai and BOLLYWOOD PARKS™ 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.<\\/p>\\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\":\"Swimmin 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 Tour\",\"Description\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"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\":\"<p>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’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’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’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.<br><\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18435,\"Title\":\"Dubai Parks & Resorts\",\"Description\":\"<p>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. <\\/p><p>MOTIONGATE™ Dubai: MOTIONGATE™ 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™ Dubai brings some of Hollywood’s most beloved films to life.<\\/p><p>BOLLYWOOD PARKS™ Dubai: BOLLYWOOD PARKS™ Dubai at Dubai Parks and Resorts, is the world’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’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’s Chulbul Pandey.<\\/p><p>LEGOLAND® Dubai: Explore a world where the LEGO® brick comes to life at LEGOLAND® 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’s where awesome awaits!<\\/p><p>LEGOLAND® Water Park: Splash into a world of LEGO® adventures at LEGOLAND® Water Park, the Middle East’s only Water<\\/p><p>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® toddler play area. It’s where awesome awaits! <\\/p><p>RIVERLAND™ Dubai: Riverland™ 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.<\\/p>\",\"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\":\"163389\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":476072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"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\":\"BB\",\"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\":\"BB\",\"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\":\"BB\",\"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\":\"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\":\"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\":\"68392.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":68393,\"priceDoubleOcc\":\"68392.50\",\"priceSingleOcc\":136785,\"priceExtraBed\":\"68392.50\",\"priceWithoutBed\":\"68392.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68392.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p>Above Cost is valid for a minimum of 2 pax<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All Tours &amp; Transfers are on PVT Basis.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Rate is inclusive of all Local taxes, VAT except Tourism Dirhams to be paid directly to Hotel.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Rooms &amp; Rates will be subject to availability&nbsp;at the time of Actual Booking.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Rate is not to be valid during any events or exhibitions.<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li>\\r\\n\\t<p><strong>GST if not mentioned in the rates<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Anything not mentioned under Package Inclusions.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Entrance fees at all monuments and sightseeing spots<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Airfare if not mentioned in the&nbsp;itinerary<\\/p>\\r\\n\\t<\\/li>\\r\\n\\t<li>\\r\\n\\t<p>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/p>\\r\\n\\t<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Stay at Paramount Hotel&nbsp;<\\/li>\\r\\n\\t<li>1 Night Stay at Lapita Parks &amp; Resort<\\/li>\\r\\n\\t<li>Daily Breakfast<\\/li>\\r\\n\\t<li>Honeymoon Freebies - Red Velvet Cake + Bottle of Sparkling Wine + Chocolate Box<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers by LEXUS<\\/li>\\r\\n\\t<li>Interhotel Transfer<\\/li>\\r\\n\\t<li>Modern Dubai City Tour + Burj Khalifa 124th Floor Non-prime time<\\/li>\\r\\n\\t<li>1 Hour Limousine Ride<\\/li>\\r\\n\\t<li>1 Hour Yacht Ride<\\/li>\\r\\n\\t<li>Premium Desert Safari with Dinner at&nbsp;Al Hadheerah Restaurant in&nbsp;Bab Al Shams Desert Resort<\\/li>\\r\\n\\t<li>Unlimited Access to all Dubai Parks during the stay in Lapita Resorts ( Subject to operational days of parks )<\\/li>\\r\\n\\t<li>All Tours &amp; Transfers are on PVT Basis.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"163389\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[163389],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163390\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[163390],\"Remark\":[\"<p>Tour Transfers on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163391\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[163391],\"Remark\":[\"<p>Tour Transfer on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163392\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[163392],\"Remark\":[\"<p>Tour Transfers on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163393\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[163393],\"Remark\":[\"<p>Interhotel Transfer on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163394\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[163394],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',68393,68393,5,'24_1616159301_0.jpg,24_1616159383_0.jpg,24_1616160323_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-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2021-03-30 18:41:33','2021-03-30 00:00:00',1,1,'1','1','0','','','',NULL,'affluent-honeymoon-package',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (25,22909,1,5293,0,0,0,'Adventure,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22909,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/FAMILY_FUN_PACKAGE_80.jpg\",\"BookingValidUntill\":\"2021-04-10\",\"AdvBookingDays\":10,\"DETAILS\":\"<h3><strong><span class="marker">FAMILY FUN PACKAGE<\\/span><\\/strong><\\/h3>\\r\\n\\r\\n<p><strong><small><big>KIDS GO FREE \\/\\/ 5 Nights&nbsp;6 Days&nbsp;<\\/big><\\/small><\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>1 Child below 12yrs old free ( Sharing on parents bed )<\\/li>\\r\\n\\t<li>4 Nights stay in Novotel Bur Dubai<\\/li>\\r\\n\\t<li>1 Night stay at Lapita Dubai<\\/li>\\r\\n\\t<li>Return PVT Dubai Airport Transfers<\\/li>\\r\\n\\t<li>PVT Interhotel Transfer<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Burj Khalifa 124th Floor<\\/li>\\r\\n\\t<li>Dubai Aquarium + Underwater Zoo<\\/li>\\r\\n\\t<li>Desert Safari<\\/li>\\r\\n\\t<li>Dolphin &amp; Seal Show<\\/li>\\r\\n\\t<li>Glow Garden + Dino Park<\\/li>\\r\\n\\t<li>Complimentary Access to Dubai Parks while staying in Lapita ( Subject to Operational Status of Parks )<\\/li>\\r\\n<\\/ul>\\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\":\"2021-03-26\",\"To\":\"2021-04-10\"},\"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\":\"<p>This 4-star hotel near Dubai Airport is close to<strong> Dubai Healthcare City metro station<\\/strong>, giving easy access to the <strong>Dubai Frame, Dubai Mall and Burj Khalifa.<\\/strong> 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.<\\/p>\\r\\n\\r\\n<p>Amid hospitals and clinics in Dubai Healthcare City, this polished hotel is 9 km from shopping at <strong>The Dubai Mall, <\\/strong>and 7 km from<strong> Dubai International Airport<\\/strong>.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>Amenities include a restaurant\\/bar, a fitness centre, and a heated rooftop pool with a bar. Parking, breakfast (surcharge) and massages are available.<\\/p>\\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\":\"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\":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 & 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\":\"<p>With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND™ Dubai, LEGOLAND® Water Park, LEGOLAND® Dubai, MOTIONGATE™ Dubai and BOLLYWOOD PARKS™ 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.<\\/p>\\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\":\"Swimmin 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 Tour\",\"Description\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18426,\"Title\":\"Dubai Aquarium & Underwater Zoo\",\"Description\":\"<p>Dubai Aquarium & 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’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’s a complete fish-eye view, with sand tiger sharks and stingrays swimming overhead.<br><\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18428,\"Title\":\"Dubai Dolphinarium\",\"Description\":\"<p>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.<\\/p><p>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.<\\/p><p>Spread over 5,000 square meters within Bur Dubai’s Creek Park, Dolphinarium isn’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’s Sea Eagle and also feed the birds. Other attractions include a trampoline room, a mirror maze, and a 5D and 7D theatre.<\\/p><p>Dubai Dolphinarium combines learning, fun and once in a lifetime experiences making it a great place to visit for people of all age groups.<\\/p>\",\"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 & Resorts\",\"Description\":\"<p>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. <\\/p><p>MOTIONGATE™ Dubai: MOTIONGATE™ 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™ Dubai brings some of Hollywood’s most beloved films to life.<\\/p><p>BOLLYWOOD PARKS™ Dubai: BOLLYWOOD PARKS™ Dubai at Dubai Parks and Resorts, is the world’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’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’s Chulbul Pandey.<\\/p><p>LEGOLAND® Dubai: Explore a world where the LEGO® brick comes to life at LEGOLAND® 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’s where awesome awaits!<\\/p><p>LEGOLAND® Water Park: Splash into a world of LEGO® adventures at LEGOLAND® Water Park, the Middle East’s only Water<\\/p><p>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® toddler play area. It’s where awesome awaits! <\\/p><p>RIVERLAND™ Dubai: Riverland™ 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.<\\/p>\",\"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\":\"163867\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":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 & Underwater Zoo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"<p>Evening is for the exciting <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'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\":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 & Seal Show + Glow Graden & 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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36217.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li>Above Rate is valid&nbsp;for a minimum of 2 pax<\\/li>\\r\\n\\t<li>All Transfers will be on sharing basis except mentioned<\\/li>\\r\\n\\t<li>Rates are inclusive of all Local Taxes &amp; Vat except Tourism Dirhams<\\/li>\\r\\n\\t<li>Rooms &amp; Rates are subject to availability at the time of actual booking<\\/li>\\r\\n\\t<li>The above rates are subject to change without prior notice.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>1 Child below 12yrs old free ( Sharing on parents bed )<\\/li>\\r\\n\\t<li>4 Nights stay in Novotel Bur Dubai<\\/li>\\r\\n\\t<li>1 Night stay at Lapita Dubai<\\/li>\\r\\n\\t<li>Return PVT Dubai Airport Transfers<\\/li>\\r\\n\\t<li>PVT Interhotel Transfer<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Burj Khalifa 124th Floor<\\/li>\\r\\n\\t<li>Dubai Aquarium + Underwater Zoo<\\/li>\\r\\n\\t<li>Desert Safari<\\/li>\\r\\n\\t<li>Dolphin &amp; Seal Show<\\/li>\\r\\n\\t<li>Glow Garden + Dino Park<\\/li>\\r\\n\\t<li>Complimentary Access to Dubai Parks while staying in Lapita ( Subject to Operational Status of Parks )<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><strong>RT- PCR test report&nbsp;with a validity of 96 hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"163867\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[163867],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163868\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[163868],\"Remark\":[\"<p>All Tours on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163869\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[163869],\"Remark\":[\"<p>Tour on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163870\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[163870],\"Remark\":[\"<p>All Tours on SIC Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163871\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[163871],\"Remark\":[\"<p>Interhotel Transfer on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163872\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[163872],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','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,'2021-03-26 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2021-03-26 17:59:24','2021-03-26 00:00:00',1,1,'1','1','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,\"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\":\"<p><span class="marker"><strong>SIGNATURE BOAT TOUR PACKAGE<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>5 Nights 6 Days&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>04 Nights Stay at Lemon Tree Hotel Jumeirah&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<\\/li>\\r\\n\\t<li>01 Night Stay at Lapita Resort<\\/li>\\r\\n\\t<li>Hero Odysea Signature Boat (90 Minutes Self Drive]&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Flying Cup<\\/li>\\r\\n\\t<li>Many other Inclusions&nbsp;<\\/li>\\r\\n<\\/ul>\\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\":\"2021-03-26\",\"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\":\"<p>The perfect decision while booking hotels in Dubai<br \\/>\\r\\nLocated on Al Wasl Road, and less than a kilometre from Jumeirah Open Beach and Sheikh Zayed Road, <strong>Lemon Tree Hotel, Dubai<\\/strong> 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.<\\/p>\\r\\n\\r\\n<p>A short twenty-minute drive from <strong>Dubai International Airport<\\/strong>, this property is one of<strong> the hotels near Dubai Internet City, Dubai Media City, Barsha Heights, and Knowledge Park,<\\/strong> as well as key tourist attractions like <strong>the Burj Al Arab and Mall of Emirates, Dubai<\\/strong>. This hotel is ideal for business and leisure travellers to the city.<\\/p>\\r\\n\\r\\n<p>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 <strong>Burj Khalifa<\\/strong>, the tallest building in the world, as well as the neighbouring<strong> Dubai Mall<\\/strong>, Dubai’s largest shopping mall, fashionable shopping hubs, inviting eateries and trendy nightlife destinations across Dubai.<\\/p>\\r\\n\\r\\n<p>The hotel is also well connected by road and air to the other Emirates, including <strong>Abu Dhabi, Ajman, Fujairah, Ras Al Khaimah, Sharjah and Umm Al Quwain<\\/strong>.<\\/p>\\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\":\"Swimmin 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 & 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\":\"<p>With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND™ Dubai, LEGOLAND® Water Park, LEGOLAND® Dubai, MOTIONGATE™ Dubai and BOLLYWOOD PARKS™ 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.<\\/p>\\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\":\"Swimmin 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\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18444,\"Title\":\"Flying Cup Dubai\",\"Description\":\"<p>Flying Cup - an uplifting perspective located on The Beach, JBR<\\/p><p>Flying Cup is an innovative food and entertainment concept that combines three experiences in one.<\\/p><p>“Grab a drink. Enjoy the spectacular views, and don’t forget the selfie!”<\\/p><p>Flying Cup is a ride designed to take passengers up to a height of a 12 story building and give them a 360°panoramic view of their surroundings. Passengers travel with their feet dangling freely in the air for a unique sensation of freedom and excitement.<\\/p><p>Flying Cup aims to give its passengers an ‘uplifting perspective’. Every aspect of the ride seeks to enhance the passengers experience through a carefully selected location, advanced safety measures and handpicked refreshments.<\\/p><p>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 “selfie” destination.<\\/p>\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\" \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18435,\"Title\":\"Dubai Parks & Resorts\",\"Description\":\"<p>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. <\\/p><p>MOTIONGATE™ Dubai: MOTIONGATE™ 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™ Dubai brings some of Hollywood’s most beloved films to life.<\\/p><p>BOLLYWOOD PARKS™ Dubai: BOLLYWOOD PARKS™ Dubai at Dubai Parks and Resorts, is the world’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’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’s Chulbul Pandey.<\\/p><p>LEGOLAND® Dubai: Explore a world where the LEGO® brick comes to life at LEGOLAND® 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’s where awesome awaits!<\\/p><p>LEGOLAND® Water Park: Splash into a world of LEGO® adventures at LEGOLAND® Water Park, the Middle East’s only Water<\\/p><p>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® toddler play area. It’s where awesome awaits! <\\/p><p>RIVERLAND™ Dubai: Riverland™ 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.<\\/p>\",\"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\":\"176243\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":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\":\"<p>Evening is for the exciting <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'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\":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\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"<p><strong>Dubai Signature Hero Odysea Boat Tour <\\/strong><\\/p>\\r\\n\\r\\n<p>Drive your own boat and conquer the Arabian Gulf while exploring Dubai’s iconic coastline on a 90-minute guided adventure. This boat tour was designed for the adventurous type who prefer to sightsee Dubai’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’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!<\\/p>\\r\\n\\r\\n<p><strong>Flying Cup<\\/strong> is an innovative food and entertainment concept that combines three experiences in one. A 20-minute, slowly spinning ride rising up to 40m, with views over skyscrapers & the Persian Gulf.<\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li><big><small>FANTASTIC 360 PANORAMIC VIEWS<\\/small><\\/big><\\/li>\\r\\n\\t<li><big><small>BIRD-LIKE SENSATION OF FREEDOM<\\/small><\\/big><\\/li>\\r\\n\\t<li><big><small>YOUR FAVORITE DRINK<\\/small><\\/big><\\/li>\\r\\n<\\/ul>\\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\":\"<p>Morning enjoy breakfast in Lemon Tree Dubai and transfer to Lapita Resorts.<\\/p>\\r\\n\\r\\n<p>Complimentary Access To All Dubai Parks During Stay At Lapita.<\\/p>\\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\":\"<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\":\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"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.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40260.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<h3><ins><span style="color:c0392b"><strong>Booking<\\/strong><\\/span><\\/ins><\\/h3>\\r\\n\\r\\n<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>04 Nights Stay at Lemon Tree Hotel Jumeriah<\\/li>\\r\\n\\t<li>01 Night Stay at Lapita Resorts<\\/li>\\r\\n\\t<li>Daily Breakfast &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Private Return Dubai Airport Transfers &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Private Inter Hotel Transfer &nbsp;<\\/li>\\r\\n\\t<li>Hero Odysea &nbsp;Signature Boat (90 Minutes Self Drive] &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Private Dubai City Tour + Burj Khalifa 124th Floor Non-Prime Time<\\/li>\\r\\n\\t<li>Sharing Desert Safari &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Flying Cup &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Complimentary Access To All Dubai Parks During Stay At Lapita &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Package valid for a minimum of 2 pax.&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<\\/li>\\r\\n\\t<li>All transfers will be as mentioned.&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<\\/li>\\r\\n\\t<li>Package&nbsp;inclusive of all local taxes and VAT, except Tourism Dirham Fee<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"176243\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176243],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176244\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176244],\"Remark\":[\"<p>Tour on Sharing Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176245\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176245],\"Remark\":[\"<p>Tour Transfers on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176246\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176246],\"Remark\":[\"<p>Tour Transfers on Sharing Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176247\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[176247],\"Remark\":[\"<p>Interhotel Transfer on PVT Basis<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176248\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176248],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','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,'2021-03-26 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2021-03-26 12:46:41','2021-03-26 00:00:00',1,1,'1','1','0','','','',NULL,'signature-boat-tour-package',NULL,NULL,NULL,0),(27,24730,1,5293,1,0,0,'Honeymoon,Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24730,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CENTARA_RAS_FUSHI_RESORT_-_SINGLE_STAY_79.jpg\",\"BookingValidUntill\":\"2021-04-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p>4 Nights Accomodation for a Couple, 4 Breakfast, 4 Lunch &amp; 4 Dinner ( All Inclusive Meal Plan), Airport-Hotel-Airport Transfers by Speedboat, All Taxes.<\\/p>\\r\\n\\r\\n<p>Snorkelling Gear,&nbsp;Non-Motorised water sport activities, Beach Volley-Ball, WIFI, Fitness Center<\\/p>\\r\\n\\r\\n<p>Complimentary RT-PCR test with minimum 4 Nights Stay&nbsp;<\\/p>\\r\\n\\r\\n<p>Adult only Hotel, Minimum age allowed is 13 years old<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\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-03-24\",\"To\":\"2021-04-30\"},\"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' 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\":\"<p>Centara Ras Fushi Resort & Spa Maldives<\\/p>\\r\\n\\r\\n<p>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é Atoll, Centara Ras Fushi Resort & Spa Maldives is an adults-only retreat that is ideal for couples and honeymooners.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>As an adults-only resort, guests must be aged 12 years and above.<\\/p>\\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\":\"Swimmin 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\":\"AI\"}]},\"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. <\\/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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"57200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":57200,\"priceDoubleOcc\":\"57200.00\",\"priceSingleOcc\":114400,\"priceExtraBed\":\"57200.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":59950,\"priceDoubleOcc\":\"59950.00\",\"priceSingleOcc\":119900,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"59950.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>Room service<\\/li>\\r\\n\\t<li>Fresh fruit juices<\\/li>\\r\\n\\t<li>Premium brand spirits<\\/li>\\r\\n\\t<li>**Drinks offered to others are chargeable and drinks served after the time limit is chargeable.<\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Stay on Double sharing basis in Ocean Front Beach Villa<\\/li>\\r\\n\\t<li>All Inclusive Meal plan<\\/li>\\r\\n\\t<li>Airport Transfers in Speed Boat on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>ALL INCLUSIVE MEAL PLAN DETAILS<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>From 0800 to 0000 hrs Beer, Soft Drinks: Bottled water, Coca Cola, Sprite, Fanta Orange, Bitter Lemon, Tonic Water, Soda Water.<\\/li>\\r\\n\\t<li>Canned Juices: Orange, Pineapple, Apple, Grapefruit and Tomato by glass<\\/li>\\r\\n\\t<li>Wine: House Wine (red, white, rose) by glass;<\\/li>\\r\\n\\t<li>Selected Alcoholic Cocktails: Served in the Sand Bar during bar from 0800 to 1200 midnight and in the restaurant during meal times only.<\\/li>\\r\\n\\t<li>Tea and regular coffee: (Cappuccino and Espresso etc. are not included) will be available from the Restaurant and coffee shop during the opening hours.<\\/li>\\r\\n\\t<li>Snacks available in the coffee shop from the All-inclusive snack list: Mid-morning - from 1000 to 1130 Afternoon - from 1500 to 1700<\\/li>\\r\\n\\t<li>Snorkeling: Snorkeling equipment is included and available only at Reception. Lost or damaged of equipment will be charged at cost. Equipment&rsquo;s should be returned eight hours prior to departure.<\\/li>\\r\\n\\t<li>&nbsp;Excursions: A snorkeling trip OR a fishing trip by dhoni (local wooden boat). Excursions will be based on the resort&rsquo;s weekly excursion schedule. No refund will be given if the guests are not able to take part in the excursion during their stay.<\\/li>\\r\\n\\t<li>Gym, Sports: Free use of Gym, Table tennis and Garlando foosball table.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177018\":[{\"Sequence\":[0],\"TPInvnSysId\":[177018],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177019\":[{\"Sequence\":[0],\"TPInvnSysId\":[177019],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177020\":[{\"Sequence\":[0],\"TPInvnSysId\":[177020],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177021\":[{\"Sequence\":[0],\"TPInvnSysId\":[177021],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177022\":[{\"Sequence\":[0],\"TPInvnSysId\":[177022],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',57200,59950,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-03-24 00:00:00','2021-04-30 00:00:00','2021-04-30 00:00:00',3,'Maldives','133','2021-03-24 17:13:49','2021-03-24 00:00:00',1,1,'1','1','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,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/AFFORDABLE_DUBAI_PACKAGE_32.jpg\",\"BookingValidUntill\":\"2021-08-31\",\"AdvBookingDays\":10,\"DETAILS\":\"<h3><small><span class="marker"><big><strong>BASIC HOLIDAY&nbsp;PACKAGE<\\/strong><\\/big><\\/span><\\/small><\\/h3>\\r\\n\\r\\n<p><small><big><strong>(4 Nights 5&nbsp;Days)<\\/strong><\\/big><\\/small><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Accommodation<\\/li>\\r\\n\\t<li>Daily Breakfast<\\/li>\\r\\n\\t<li>Airport Transfers<\\/li>\\r\\n\\t<li>Sightseeing Tours and&nbsp;Transfers<\\/li>\\r\\n<\\/ul>\\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\":\"AFFORDABLE DUBAI 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,Family,Leisure\",\"Validity\":{\"From\":\"2021-03-26\",\"To\":\"2021-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479708,\"Name\":\"Citymax Hotel Bur Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bur Dubai Kuwait St. and Mankhool Rd, Al Mankhool, Dubai, UAE\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"<p>If you’re planning to visit the towering pride of Dubai, the Burj Khalifa, or perhaps the Dubai Opera, or maybe the historic Dubai Museum, then you’re in the perfect spot at Citymax Hotel Bur Dubai. Nestled comfortably in the heart of the city, just a mere 20-minute drive from Dubai Airport, Citymax Hotel has plenty of vibrant entertainment and dining options, including The Huddle Sports Bar, Claypot - an Indian restaurant, Sizzling Wok - our Pan Asian restaurant, our all-day dining restaurant City Café, a 24-hour Lavazza cafe and the Aqua Pool Bar. All 691 guest rooms at Citymax Hotel Bur Dubai provide free WiFi. Citymax Hotel also offers a neat and nifty rooftop pool and a rough and rigged gymnasium. Whether you’re in town for leisure or work, Citymax Hotel in Bur Dubai has everything you need for a fun and c<\\/p>\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479708\\/5293_8a17e7b6d3941783401d7c28834508d51616680851.jpg\",\"AccoAminitiesMask\":\"1111101010001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"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\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479585,\"Name\":\"HOLIDAY INN BUR DUBAI - EMBASSY DISTRICT\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"<p>Stay connected at the modern Holiday Inn Bur Dubai - Embassy District. The hotel is located in the heart of Dubai, a hub in between embassies and businesses and is the ideal place for your Dubai stop over whether on business or leisure. A walking distance from Burjuman mall and the main metro station provides you a gateway to Dubai with the Dubai Museum, Dubai Souk and Dubai Creek right on its doorstep. 210 stylish and spacious rooms offer you all the modern facilities one would expect for a comfortable stay. Enjoy the Dubai sunset from our rooftop pool and taste a variety of excellent dishes in our all day dining restaurant Anwar. The Two Guineas pub will provide you the best an English pub has to offer. Our meeting rooms with state of the art equipment will make your event a success, whether you organize a board meeting or a fun party. You&#39;ll find that Holiday Inn Bur Dubai - Embassy District convenient location is ideal for ensuring a strong mix of productive business and enjoyable leisure time.<\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010011111001\",\"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\":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\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"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\":\"<p>Our 5-star hotel in old Dubai pays homage to the idea of the city as a blank canvas – a place of constant transformation where even the most impossible dreams can become a reality. In particular, Bur Dubai’s dual role as a historic centre and modern trendsetter have inspired our own outlook, which is both respectfully traditional and fiercely contemporary.<\\/p>\\r\\n\\r\\n<p>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’s polished steel wall art, a tribute to the beauty of Dubai’s night-time skyline. Burgundy leather sofas invite travel-weary legs to rest awhile and admire masterpieces by Emirati artists – proof of the city’s leadership in the spheres of art and culture.<\\/p>\\r\\n\\r\\n<p>Perhaps you will dedicate your time to exploring Bur Dubai’s heritage – through a visit to the historic Al Bastakiya neighbourhood perhaps, or with a Memorable Moment tour of the Etihad Museum. Perhaps you’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’s largest private jacuzzi. Or revel in the tantalising scents and flavours served up at our celebrity restaurant, Signature by Sanjeev Kapoor.<\\/p>\\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\":\"Swimmin 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\":\"Superior Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":18418,\"Title\":\"Dhow Cruise Dinner Creek\",\"Description\":\"<p>Cruising down Dubai creek is a serene experience, a great way to take in all that the creek has to offer is on board a traditional Arabian wooden Dhow. Iconic views paired with delectable cuisine and great service makes this a must visit when in Dubai. Sip on a refreshing welcome drink as you sail through the very heart of the city, with the charm of Bur Dubai’s Middle Eastern Architecture to the southwest of the creek and the sophisticated glittering skyline of Deira Dubai to the North-East. While you are enamored by the stunning views, you can feast on an indulgent dinner buffet consisting of specialty delicacies and desserts and enjoy live Tanura song and dance performances.<\\/p><p>A Dhow cruise on the Dubai creek is a must when you visit Dubai- it’s the perfect collaboration of great food, live performances and beautiful views of the city by night.<\\/p>\",\"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\":\"177040\",\"Title\":\"Arrival at Dubai Airport & Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Private transfer 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\":479708,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":479585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"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\":\"177043\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>Evening is for the exciting <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'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\":479708,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":479585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"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\":\"177046\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor in Dubai Mall + Fountain Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479708,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":479585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"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\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177049\",\"Title\":\"Creek Dhow Cruise in the evening\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<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\":479708,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":479585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"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\":18418,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177052\",\"Title\":\"Departure to Dubai Airport\",\"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\":\"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\":\"15097.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15098,\"priceDoubleOcc\":\"15097.50\",\"priceSingleOcc\":30195,\"priceExtraBed\":\"15097.50\",\"priceWithoutBed\":\"15097.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15097.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24736\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15510.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"15510.00\",\"priceSingleOcc\":31020,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15510.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24737\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18150,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":36300,\"priceExtraBed\":\"18150.00\",\"priceWithoutBed\":\"18150.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18150.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Accommodation<\\/li>\\r\\n\\t<li>Daily &nbsp;Breakfast<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfer<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Desert Safari With BBQ&nbsp;Dinner<\\/li>\\r\\n\\t<li>Creek Dhow Cruise With Dinner<\\/li>\\r\\n\\t<li>Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<\\/li>\\r\\n\\t<li>All Transfer Will Be On Sharing Basis, Except Airport Transfers.<\\/li>\\r\\n\\t<li>Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177040\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177040],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177043\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177043],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177046\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177046],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177049\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177049],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177052\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177052],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',15098,18150,4,NULL,NULL,NULL,2,'',0,'2021-03-26 00:00:00','2021-08-31 00:00:00','2021-08-31 00:00:00',3,'United Arab Emirates','228','2021-03-26 12:30:56','2021-03-26 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'affordable-dubai-package',NULL,NULL,NULL,0),(29,24748,1,5293,0,0,0,'Honeymoon,Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24748,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CENTARA_RAS_FUSHI_RESORT_-_SPLIT_STAY_57.jpg\",\"BookingValidUntill\":\"2021-04-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p>2 Nights Stay in Ocean Front Beach Villa + 2 Nights Stay in Deluxe Water Villa for a Couple, 4 Breakfast, 4 Lunch &amp; 4 Dinner ( All Inclusive Meal Plan), Airport-Hotel-Airport Transfers by Speedboat, All Taxes.<\\/p>\\r\\n\\r\\n<p>Snorkelling Gear,&nbsp;Non-Motorised water sport activities, Beach Volley-Ball, WIFI, Fitness Center<\\/p>\\r\\n\\r\\n<p>Complimentary RT-PCR test with minimum 4 Nights Stay&nbsp;<\\/p>\\r\\n\\r\\n<p>Adult only Hotel, Minimum age allowed is 13 years old<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\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-03-24\",\"To\":\"2021-04-30\"},\"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' 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\":\"<p>Centara Ras Fushi Resort & Spa Maldives<\\/p>\\r\\n\\r\\n<p>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é Atoll, Centara Ras Fushi Resort & Spa Maldives is an adults-only retreat that is ideal for couples and honeymooners.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p>As an adults-only resort, guests must be aged 12 years and above.<\\/p>\\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\":\"Swimmin 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\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177116\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><span class=\\\"marker\\\"><strong>STAY 1 - OCEAN FRONT BEACH VILLA <\\/strong><\\/span><\\/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. <\\/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><big><small><span class=\\\"marker\\\"><strong>STAY 2 - DELUXE WATER VILLA<\\/strong><\\/span><\\/small><\\/big><\\/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. <\\/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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"62920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":125840,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"62920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-01\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":66740,\"priceDoubleOcc\":\"66740.30\",\"priceSingleOcc\":133480.6,\"priceExtraBed\":\"66740.30\",\"priceWithoutBed\":\"66740.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66740.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>Room service<\\/li>\\r\\n\\t<li>Fresh fruit juices<\\/li>\\r\\n\\t<li>Premium brand spirits<\\/li>\\r\\n\\t<li>**Drinks offered to others are chargeable and drinks served after the time limit is chargeable.<\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>2 Nights Stay in Ocean Front Beach Villa + 2 Nights Stay in Deluxe Water Villa<\\/li>\\r\\n\\t<li>All Inclusive Meal plan<\\/li>\\r\\n\\t<li>Airport Transfers in Speed Boat on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class="marker"><strong>ALL INCLUSIVE MEAL PLAN DETAILS<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>From 0800 to 0000 hrs Beer, Soft Drinks: Bottled water, Coca Cola, Sprite, Fanta Orange, Bitter Lemon, Tonic Water, Soda Water.<\\/li>\\r\\n\\t<li>Canned Juices: Orange, Pineapple, Apple, Grapefruit and Tomato by glass<\\/li>\\r\\n\\t<li>Wine: House Wine (red, white, rose) by glass;<\\/li>\\r\\n\\t<li>Selected Alcoholic Cocktails: Served in the Sand Bar during bar from 0800 to 1200 midnight and in the restaurant during meal times only.<\\/li>\\r\\n\\t<li>Tea and regular coffee: (Cappuccino and Espresso etc. are not included) will be available from the Restaurant and coffee shop during the opening hours.<\\/li>\\r\\n\\t<li>Snacks available in the coffee shop from the All-inclusive snack list: Mid-morning - from 1000 to 1130 Afternoon - from 1500 to 1700<\\/li>\\r\\n\\t<li>Snorkeling: Snorkeling equipment is included and available only at Reception. Lost or damaged of equipment will be charged at cost. Equipment&rsquo;s should be returned eight hours prior to departure.<\\/li>\\r\\n\\t<li>&nbsp;Excursions: A snorkeling trip OR a fishing trip by dhoni (local wooden boat). Excursions will be based on the resort&rsquo;s weekly excursion schedule. No refund will be given if the guests are not able to take part in the excursion during their stay.<\\/li>\\r\\n\\t<li>Gym, Sports: Free use of Gym, Table tennis and Garlando foosball table.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177116\":[{\"Sequence\":[0],\"TPInvnSysId\":[177116],\"Remark\":[\"<p>TRANSFER BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177117\":[{\"Sequence\":[0],\"TPInvnSysId\":[177117],\"Remark\":[\"<p>TRANSFER BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177118\":[{\"Sequence\":[0],\"TPInvnSysId\":[177118],\"Remark\":[\"<p>TRANSFER BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177119\":[{\"Sequence\":[0],\"TPInvnSysId\":[177119],\"Remark\":[\"<p>TRANSFER BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177120\":[{\"Sequence\":[0],\"TPInvnSysId\":[177120],\"Remark\":[\"<p>TRANSFER BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',62920,66740,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-03-24 00:00:00','2021-04-30 00:00:00','2021-04-30 00:00:00',3,'Maldives','133','2021-03-24 17:45:58','2021-03-24 00:00:00',1,1,'1','1','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,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_SPLIT_STAY_95.jpg\",\"BookingValidUntill\":\"2021-06-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p>4 Nights Accomodation for a Couple, 4 Breakfast, 4 Lunch &amp; 4 Dinner ( All Inclusive Meal Plan), Airport-Hotel-Airport Transfers by Sea Plane, All Taxes<\\/p>\\r\\n\\r\\n<p>Complimentary RT-PCR Test&nbsp;<\\/p>\\r\\n\\r\\n<p>Complimentary Minibar (Replenished once every day)<\\/p>\\r\\n\\r\\n<p>Floating Breakfast<\\/p>\\r\\n\\r\\n<p>Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour<\\/p>\\r\\n\\r\\n<p>USD 100 Spa Credit per Adult per Stay<\\/p>\\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\":\"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\":\"2021-03-24\",\"To\":\"2021-06-30\"},\"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\":\"<h3>A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES<\\/h3>\\r\\n\\r\\n<h3><br \\/>\\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.<\\/h3>\\r\\n\\r\\n<p>Fully all inclusive resort<br \\/>\\r\\nCertified diving school<br \\/>\\r\\nWine Academy tastings<br \\/>\\r\\nFishing lessons from the locals<br \\/>\\r\\nWeekly pool parties <\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"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\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Beach 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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177205\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>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’ve everything you’ll possibly need.<\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>KEY FEATURES<\\/strong><\\/span><br \\/>\\r\\n93sqm villa<br \\/>\\r\\nPrivate pool<br \\/>\\r\\nRight on the beach<br \\/>\\r\\nExtra bed available<br \\/>\\r\\n3 adults OR 2 adults & 2 children<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"AI\",\"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\":\"108130.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":108130,\"priceDoubleOcc\":\"108130.00\",\"priceSingleOcc\":216260,\"priceExtraBed\":\"108130.00\",\"priceWithoutBed\":\"108130.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"108130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Stay on Double sharing basis in Beach Suite with Pool&nbsp;<\\/li>\\r\\n\\t<li>All Inclusive Meal plan<\\/li>\\r\\n\\t<li>Return Airport Transfers in Sea Plane&nbsp;on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n\\t<li>Complimentary RT-PCR test&nbsp;<\\/li>\\r\\n\\t<li>Complimentary Minibar (Replenished once every day)<\\/li>\\r\\n\\t<li>Floating Breakfast<\\/li>\\r\\n\\t<li>Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour<\\/li>\\r\\n\\t<li>USD 100 Spa Credit per Adult per Stay<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177205\":[{\"Sequence\":[0],\"TPInvnSysId\":[177205],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177206\":[{\"Sequence\":[0],\"TPInvnSysId\":[177206],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177207\":[{\"Sequence\":[0],\"TPInvnSysId\":[177207],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177208\":[{\"Sequence\":[0],\"TPInvnSysId\":[177208],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177209\":[{\"Sequence\":[0],\"TPInvnSysId\":[177209],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',108130,108130,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,'2021-03-24 00:00:00','2021-06-30 00:00:00','2021-06-30 00:00:00',3,'Maldives','133','2021-03-24 18:16:08','2021-03-24 00:00:00',1,1,'1','1','0','','','',NULL,'sun-siyam-iru-veli-single-stay',NULL,NULL,NULL,0),(31,24759,1,5293,1,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24759,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_SPLIT_STAY_95.jpg\",\"BookingValidUntill\":\"2021-06-30\",\"AdvBookingDays\":10,\"DETAILS\":\"<p>2 Nights Stay in Beach Suite with Pool + 2 Nights Stay in Ocean Suite with Pool&nbsp;for a Couple, 4 Breakfast, 4 Lunch &amp; 4 Dinner ( All Inclusive Meal Plan), Airport-Hotel-Airport Transfers by Sea Plane, All Taxes<\\/p>\\r\\n\\r\\n<p>Complimentary RT-PCR Test&nbsp;<\\/p>\\r\\n\\r\\n<p>Complimentary Minibar (Replenished once every day)<\\/p>\\r\\n\\r\\n<p>Floating Breakfast<\\/p>\\r\\n\\r\\n<p>Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour<\\/p>\\r\\n\\r\\n<p>USD 100 Spa Credit per Adult per Stay<\\/p>\\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\":\"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\":\"2021-03-24\",\"To\":\"2021-06-30\"},\"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\":\"<h3>A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES<\\/h3>\\r\\n\\r\\n<h3><br \\/>\\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.<\\/h3>\\r\\n\\r\\n<p>Fully all inclusive resort<br \\/>\\r\\nCertified diving school<br \\/>\\r\\nWine Academy tastings<br \\/>\\r\\nFishing lessons from the locals<br \\/>\\r\\nWeekly pool parties <\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"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\":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}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177210\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><span class=\\\"marker\\\"><strong>STAY 1 - BEACH SUITE WITH POOL<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>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’ve everything you’ll possibly need.<\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>STAY 2 - OCEAN SUITE WITH POOL<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"103730.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":103730,\"priceDoubleOcc\":\"103730.00\",\"priceSingleOcc\":207460,\"priceExtraBed\":\"103730.00\",\"priceWithoutBed\":\"103730.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103730.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n\\t<li>Airfare if not mentioned in the&nbsp;itinerary<\\/li>\\r\\n\\t<li>Travel Insurance if not mentioned in the&nbsp;itinerary (Highly recommendable by I Need Trip)<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>2 Nights Stay in Beach Suite with Pool + 2 Nights in Ocean Suite with Pool on Double Sharing Basis<\\/li>\\r\\n\\t<li>All Inclusive Meal plan<\\/li>\\r\\n\\t<li>Return Airport Transfers in Sea Plane&nbsp;on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n\\t<li>Complimentary RT-PCR test&nbsp;<\\/li>\\r\\n\\t<li>Complimentary Minibar (Replenished once every day)<\\/li>\\r\\n\\t<li>Floating Breakfast<\\/li>\\r\\n\\t<li>Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour<\\/li>\\r\\n\\t<li>USD 100 Spa Credit per Adult per Stay<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177210\":[{\"Sequence\":[0],\"TPInvnSysId\":[177210],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177211\":[{\"Sequence\":[0],\"TPInvnSysId\":[177211],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177212\":[{\"Sequence\":[0],\"TPInvnSysId\":[177212],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177213\":[{\"Sequence\":[0],\"TPInvnSysId\":[177213],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177214\":[{\"Sequence\":[0],\"TPInvnSysId\":[177214],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',103730,103730,4,'31_1617096922_0.jpg,31_1617097266_0.jpg,31_1617188360_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-03-24 00:00:00','2021-06-30 00:00:00','2021-06-30 00:00:00',3,'Maldives','133','2021-03-24 00:00:00','2021-03-24 00:00:00',1,1,'1','1','0','','','',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\":\"<p><span class="marker"><strong>UNBEATABLE DUBAI PACKAGE - EMI OFFER<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>**PAY NOW&nbsp; &nbsp; &nbsp; &nbsp;<\\/strong>INR 8495&nbsp;per person&nbsp;<br \\/>\\r\\n<strong>**BALANCE AMOUNT&nbsp;&nbsp; &nbsp;<\\/strong>INR 3941\\/- in 9 Monthly Installments ( Interest Free )<\\/p>\\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\":\"<p>Built to serve the corporate guest, the<strong> Ascot Hotel <\\/strong>has been carefully engineered to cater to the business traveler’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.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\nA boom in hospitality sector is a boom in the tourism industry. For its part, <em>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.<\\/em><\\/p>\\r\\n\\r\\n<p> <\\/p>\\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\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\":\"<p>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!<br><\\/p>\",\"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 & 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 <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'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 <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/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 <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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Accommodation on Double Sharing Basis<\\/li>\\r\\n\\t<li>Economy Class Return Airfare in Indigo Airlines<\\/li>\\r\\n\\t<li>Dubai Tourist Visa<\\/li>\\r\\n\\t<li>Travel Insurance<\\/li>\\r\\n\\t<li>Daily &nbsp;Breakfast<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Desert Safari With BBQ Dinner<\\/li>\\r\\n\\t<li>Marina Dhow Cruise With Dinner<\\/li>\\r\\n\\t<li>Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/li>\\r\\n\\t<li>All Transfer Will Be On Sharing Basis, Except Airport Transfers<\\/li>\\r\\n\\t<li>Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177583\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177583],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177584\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177584],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177585\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177585],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177586\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177586],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177587\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177587],\"Remark\":[\"<p><br><\\/p>\"],\"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',NULL,'8219',44000,44000,4,NULL,NULL,NULL,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-03-30 18:11:36','2021-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,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,\"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\":\"<p><span class="marker"><strong>LUXURY DUBAI&nbsp;- EMI OFFER&nbsp;<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>**PAY NOW&nbsp; &nbsp; &nbsp; &nbsp;<\\/strong>INR 9495&nbsp;per person&nbsp;<br \\/>\\r\\n<strong>**BALANCE AMOUNT&nbsp;&nbsp; &nbsp;<\\/strong>INR 4469\\/- in 9 Monthly Installments ( Interest Free )<\\/p>\\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-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\":\"<p>Connect with Dubai’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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari\",\"Description\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\":\"<p>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!<br><\\/p>\",\"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\":\"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 & 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 <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'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 <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/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 <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’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 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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>5 Nights Accommodation on Double Sharing Basis<\\/li>\\r\\n\\t<li>Economy Class Return Airfare in Indigo Airlines<\\/li>\\r\\n\\t<li>Dubai Tourist Visa<\\/li>\\r\\n\\t<li>Travel Insurance<\\/li>\\r\\n\\t<li>Daily &nbsp;Breakfast<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Desert Safari With BBQ Dinner<\\/li>\\r\\n\\t<li>Marina Dhow Cruise With Dinner<\\/li>\\r\\n\\t<li>Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/li>\\r\\n\\t<li>All Transfer Will Be On Sharing Basis, Except Airport Transfers<\\/li>\\r\\n\\t<li>Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177618\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177618],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177619\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177619],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177620\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177620],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177621\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177621],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177622\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177622],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177623\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177623],\"Remark\":[\"<p><br><\\/p>\"],\"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',NULL,'8219',49610,49610,5,NULL,NULL,NULL,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-03-30 18:11:10','2021-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,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\":\"<p><span class="marker"><strong>DUBAI WITH ATLANTIS - EMI OFFER<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p><strong>**PAY NOW&nbsp; &nbsp; &nbsp; &nbsp;<\\/strong>INR 12995&nbsp;per person&nbsp;<br \\/>\\r\\n<strong>**BALANCE AMOUNT&nbsp;&nbsp; &nbsp;<\\/strong>INR 6541\\/- in 9 Monthly Installments ( Interest Free )<\\/p>\\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\":\"<p>Connect with Dubai’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.<\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\":\"<p>On iconic Palm Jumeirah island in the <strong>Arabian Gulf<\\/strong>, this posh resort is 14 km from <strong>Wild Wadi Water Park<\\/strong> and 15 km from the upscale shops in <strong>the Mall of the Emirates<\\/strong>.<\\/p>\\r\\n\\r\\n<p>Cozy rooms have minibars, flat-screens and free Wi-Fi, as well as gulf or<strong> island views<\\/strong>. 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 <strong>views of marine life<\\/strong>. Room service is available 24\\/7.<\\/p>\\r\\n\\r\\n<p>There are <strong>23 restaurants, plus a spa, a gym & a water park<\\/strong>. Other amenities include an <strong>aquarium and a dolphin poo<\\/strong>l, along with a kids’ club and a <strong>nightclub<\\/strong>.<\\/p>\\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\":\"<p>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 – 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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p><p>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.<\\/p>\",\"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\":\"<p>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’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’t miss. For a look at Dubai’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’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.<br><\\/p>\",\"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\":\"<p>Burj Khalifa is the world’s tallest structure. A view of Dubai from the Burj's top floors is an experience of a lifetime. Take the world’s fastest elevator to the 124th floor – a 60 second ride into the clouds.<\\/p><p>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.<\\/p><p>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’s no better spot to watch the sun go down and the city sparkle to life than the top of world’s tallest skyscraper. An Experience of a lifetime!<\\/p><p>A personal escort will guide you to a dedicated elevator that will race up and open onto ‘At the Top, Burj Khalifa SKY’. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world’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!<\\/p><p>For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as ‘At the Top, Burj Khalifa SKY’. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you're walking on clouds. What’s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.<\\/p>\",\"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\":\"<p>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!<br><\\/p>\",\"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 & 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 <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'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 <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’ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai’s age old culture at Al Fahidi Fort, home to Dubai’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's highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore Dubai's most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p> <\\/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 <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\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;&nbsp;No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>4 Nights Stay in Park Regis on Breakfast Basis<\\/li>\\r\\n\\t<li>1 Night Stay in Atlantis&nbsp;on Half Board Basis<\\/li>\\r\\n\\t<li>Economy Class Return Airfare in Indigo Airlines<\\/li>\\r\\n\\t<li>Dubai Tourist Visa<\\/li>\\r\\n\\t<li>Travel Insurance<\\/li>\\r\\n\\t<li>Return Dubai Airport Transfers<\\/li>\\r\\n\\t<li>Dubai City Tour<\\/li>\\r\\n\\t<li>Desert Safari With BBQ Dinner<\\/li>\\r\\n\\t<li>Marina Dhow Cruise With Dinner<\\/li>\\r\\n\\t<li>Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/li>\\r\\n\\t<li>All Transfer Will Be On Sharing Basis, Except Airport Transfers<\\/li>\\r\\n\\t<li>Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee<\\/li>\\r\\n<\\/ul>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177632\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177632],\"Remark\":[\"<p><br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177633\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177633],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177634\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177634],\"Remark\":[\"<p>TOUR TRANSFERS ON SIC BASIS<br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177635\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177635],\"Remark\":[\"<p>TOUR TRANSFER ON SIC BASIS<br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177636\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177636],\"Remark\":[\"<p>INTERHOTEL TRANSFER ON PVT BASIS<br><\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177637\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177637],\"Remark\":[\"<p><br><\\/p>\"],\"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',NULL,'8219',70200,70200,5,NULL,NULL,NULL,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-03-30 18:10:43','2021-03-30 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'dubai-with-atlantis-emi-offer',NULL,NULL,NULL,0),(35,24831,1,5293,1,0,0,'Honeymoon,Beach,Family,Romantic,Leisure,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":24831,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/PARADISE_ISLAND_RESORT_-_EMI_OFFER_87.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"<p><strong>**PAY NOW&nbsp; &nbsp; &nbsp; &nbsp;<\\/strong>INR 19,995\\/- per person&nbsp;<br \\/>\\r\\n<strong>**BALANCE AMOUNT&nbsp;&nbsp; &nbsp;<\\/strong>INR 7632\\/- in 9 Monthly Installments ( Interest Free )<\\/p>\\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\":\"PARADISE ISLAND RESORT - EMI OFFER\",\"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\":\"2021-03-26\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479714,\"Name\":\"Paradise Island Resort, Maldives\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Lankanfinolhu North Malé Atoll P.O. Box 2073 Rep. of Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"<p>A MAJESTIC RETREAT SURROUNDED BY AZURE WATERS<\\/p>\\r\\n\\r\\n<p><br \\/>\\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 & Spa - a luxury resort in the Maldives where unforgettable experiences await.<\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111101010001110110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"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\":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\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177704\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><span class=\\\"marker\\\"><strong>STAY 1 - BEACH VILLA<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>STAY 2 - WATER VILLA<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Our magnificent, semi-detached Water Villas are bright, spacious, and luxuriously furnished. 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.<\\/p>\\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\":\"88600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":88600,\"priceDoubleOcc\":\"88600.00\",\"priceSingleOcc\":177200,\"priceExtraBed\":\"88600.00\",\"priceWithoutBed\":\"88600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"10700.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"88600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>2 Nights Stay in Beach Villa&nbsp;+ 2 Nights in Water Villa<\\/li>\\r\\n\\t<li>Full Board Meal plan ( Breakfast, Lunch &amp; Dinner )<\\/li>\\r\\n\\t<li>Economy Class Return Airfare in Indigo Airlines<\\/li>\\r\\n\\t<li>Travel Insurance<\\/li>\\r\\n\\t<li>Return Airport Transfers in Speedboat&nbsp;on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n\\t<li>Complimentary RT-PCR test&nbsp;<\\/li>\\r\\n\\t<li>Complimentary Non-Motorised Water sports like Windsurfing, Canoeing etc<\\/li>\\r\\n\\t<li>Free Gym (excluding personal trainer)<\\/li>\\r\\n\\t<li>Free Land sports (Billiards\\/Snooker, Table Tennis, Beach Volleyball, Badminton)<\\/li>\\r\\n\\t<li>A Bottle of Water 500ml per person per day to be placed in the room.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177704\":[{\"Sequence\":[0],\"TPInvnSysId\":[177704],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177705\":[{\"Sequence\":[0],\"TPInvnSysId\":[177705],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177706\":[{\"Sequence\":[0],\"TPInvnSysId\":[177706],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177707\":[{\"Sequence\":[0],\"TPInvnSysId\":[177707],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177708\":[{\"Sequence\":[0],\"TPInvnSysId\":[177708],\"Remark\":[\"<p>TRANSFERS BY SPEEDBOAT<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',88600,88600,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,'2021-03-26 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'Maldives','133','2021-03-26 19:15:21','2021-03-26 00:00:00',1,1,'1','1','0','','','',NULL,'paradise-island-resort-emi-offer',NULL,NULL,NULL,0),(36,24835,1,5293,1,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24835,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_EMI_OFFER_5.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"<p><strong>**PAY NOW &nbsp; <\\/strong>&nbsp; &nbsp; INR 24,995\\/- per person&nbsp;<br \\/>\\r\\n<strong>**BALANCE AMOUNT<\\/strong> &nbsp; &nbsp;INR 11,833\\/- in 9 Monthly Installments ( Interest Free )<\\/p>\\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\":\"SUN SIYAM IRU VELI - EMI OFFER\",\"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\":\"2021-03-26\",\"To\":\"2021-07-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\":\"<h3>A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES<\\/h3>\\r\\n\\r\\n<h3><br \\/>\\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.<\\/h3>\\r\\n\\r\\n<p>Fully all inclusive resort<br \\/>\\r\\nCertified diving school<br \\/>\\r\\nWine Academy tastings<br \\/>\\r\\nFishing lessons from the locals<br \\/>\\r\\nWeekly pool parties <\\/p>\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"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\":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\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177727\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><span class=\\\"marker\\\"><strong>STAY 1 - BEACH SUITE WITH POOL<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>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’ve everything you’ll possibly need.<\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>STAY 2 - OCEAN SUITE WITH POOL<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>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.<\\/p>\\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\":\"131500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":131500,\"priceDoubleOcc\":\"131500.00\",\"priceSingleOcc\":263000,\"priceExtraBed\":\"131500.00\",\"priceWithoutBed\":\"131500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"17200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"<ul>\\r\\n\\t<li><big>If<\\/big>&nbsp;you do not wish to travel,&nbsp;<strong>you must cancel your booking at least 72&nbsp;hours prior to scheduled departure of the flight<\\/strong>.<\\/li>\\r\\n\\t<li>Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.<\\/li>\\r\\n\\t<li>If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.<\\/li>\\r\\n\\t<li>In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.<\\/li>\\r\\n\\t<li>Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&nbsp;<\\/li>\\r\\n<\\/ul>\\r\\n\",\"BookingTerms\":\"<ul>\\r\\n\\t<li>50% advance to be paid at the time of booking <strong>(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp; cannot guarantee the availability of the proposed services)<\\/strong><\\/li>\\r\\n\\t<li>Airfare&nbsp;quoted&nbsp;at the time of package&nbsp;creation&nbsp;is subject to change at the time of booking depending on fare fluctuations.<\\/li>\\r\\n\\t<li>We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.<\\/li>\\r\\n\\t<li>Passport copies of all Guests&nbsp;(<strong>front page, address page or any observation page if any<\\/strong>) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.<\\/li>\\r\\n\\t<li>Any verbal conversations regarding the Trip\\/Package will be considered null &amp; void. Only written communications over mail or whatsapp will be accepted.<\\/li>\\r\\n\\t<li>As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp; Travel.<\\/li>\\r\\n\\t<li>100% payment&nbsp;to be made for Domestic packages 10&nbsp;days prior to departure date.<\\/li>\\r\\n\\t<li>100% payment to be made for International packages 15&nbsp;days prior to departure date.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><ins><strong><span style="color:c0392b">Travel Vouchers<\\/span><\\/strong><\\/ins><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Travel vouchers will be provided within 3 working days of receipt of Final Payment.<\\/li>\\r\\n\\t<li>Travel Itinerary&nbsp;provided at the time of booking is <strong>Tentative<\\/strong>&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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"CancellationPolicy\":\"<p><span class="marker"><strong>Airline:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>Land Part:<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<p>Clear 35 working days or more prior to the date of departure of the Tour &amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE<\\/p>\\r\\n\\r\\n<p>Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE<\\/p>\\r\\n\\r\\n<p>Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost<\\/p>\\r\\n\\r\\n<p><span class="marker"><strong>I Need Trip Cancellation Charges<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ol>\\r\\n\\t<li>INR 7000\\/- per Adult \\/ Child (&nbsp;<strong>In case of 2 to 6 Travellers<\\/strong>&nbsp;)<\\/li>\\r\\n\\t<li>Incase of Group Bookings (<strong>&nbsp;i.e. 6 or more Travellers<\\/strong>&nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.<\\/li>\\r\\n<\\/ol>\\r\\n\",\"Conditions\":\"<ul>\\r\\n\\t<li><span class="marker"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span class="marker"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.<\\/li>\\r\\n\\t<li>The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp; preponing second time will attract additional charges.<\\/li>\\r\\n\\t<li>Also note that few service providers (Hoteliers, Transporter 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)<\\/li>\\r\\n\\t<li>In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.<\\/li>\\r\\n\\t<li>We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.<\\/li>\\r\\n\\t<li>The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.<\\/li>\\r\\n\\t<li>The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).<\\/li>\\r\\n<\\/ul>\\r\\n\",\"Exclusions\":\"<ul>\\r\\n\\t<li><strong>GST if not mentioned in the rates<\\/strong><\\/li>\\r\\n\\t<li>As per new guidelines<strong> TCS &nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&nbsp;<\\/strong><\\/li>\\r\\n\\t<li>All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.<\\/li>\\r\\n\\t<li>Anything not mentioned under Package Inclusions.<\\/li>\\r\\n\\t<li>Entrance fees at all monuments and sightseeing spots<\\/li>\\r\\n\\t<li>Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"Inclusion\":\"<ul>\\r\\n\\t<li>2 Nights Stay in Beach Suite with Pool + 2 Nights in Ocean Suite with Pool on Double Sharing Basis<\\/li>\\r\\n\\t<li>All Inclusive Meal plan<\\/li>\\r\\n\\t<li>Economy Class Return Airfare in Indigo Airlines<\\/li>\\r\\n\\t<li>Travel Insurance<\\/li>\\r\\n\\t<li>Return Airport Transfers in Sea Plane&nbsp;on sharing basis.<\\/li>\\r\\n\\t<li>All Road taxes, parking fees, fuel charges, interstate taxes.<\\/li>\\r\\n\\t<li>Complimentary RT-PCR test&nbsp;<\\/li>\\r\\n\\t<li>Complimentary Minibar (Replenished once every day)<\\/li>\\r\\n\\t<li>Floating Breakfast<\\/li>\\r\\n\\t<li>Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour<\\/li>\\r\\n\\t<li>USD 100 Spa Credit per Adult per Stay<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"TravelBasics\":\"<ul>\\r\\n\\t<li>Regular Check-in time is 15.00 hours and Check-out time is&nbsp;12.00 noon<\\/li>\\r\\n\\t<li>Early check-in and late check-out will be subject to availability and at the discretion of the hotel.<\\/li>\\r\\n\\t<li>Above is just a quotation, we are not holding any rooms as of now for the below query.<\\/li>\\r\\n\\t<li>Twin beds are subject to availability.<\\/li>\\r\\n\\t<li>Rooms and rates will be subject to availability at the time of booking process.<\\/li>\\r\\n\\t<li>Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.<\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>RT- PCR test report&nbsp;with a validity of 72&nbsp;hrs from the departure date&nbsp;from&nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.<\\/strong><\\/span><\\/li>\\r\\n\\t<li><span style="color:e74c3c"><strong>With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&nbsp;hrs prior to Return Flight Date from the respective country to enter back India.<\\/strong><\\/span><\\/li>\\r\\n\\t<li>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.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"WhyUseUs\":\"<p><strong>Experience :<\\/strong>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.<\\/p>\\r\\n\\r\\n<p><strong>Service on Tour :<\\/strong>&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.<\\/p>\\r\\n\\r\\n<p><strong>Convenience :&nbsp;<\\/strong>Your time is valuable and you shouldn&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&nbsp; &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.<\\/p>\\r\\n\\r\\n<p><strong>Relationships :&nbsp;<\\/strong>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;mdash already planned.<\\/p>\\r\\n\\r\\n<p><strong>Save Money :&nbsp;<\\/strong>Often, Travel advisors can save you money based on their supplier relationships &amp;mdash or at least match the price you find &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;rsquot include those, making the experience appear cheaper.<\\/p>\\r\\n\\r\\n<p><strong>Added Value :&nbsp;<\\/strong>There are a lot of value &amp;ndash additions that consumers don&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;rsquot? They probably got their package designed from a travel expert.<\\/p>\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177727\":[{\"Sequence\":[0],\"TPInvnSysId\":[177727],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177728\":[{\"Sequence\":[0],\"TPInvnSysId\":[177728],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177729\":[{\"Sequence\":[0],\"TPInvnSysId\":[177729],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177730\":[{\"Sequence\":[0],\"TPInvnSysId\":[177730],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177731\":[{\"Sequence\":[0],\"TPInvnSysId\":[177731],\"Remark\":[\"<p>TRANSFERS BY SEA PLANE<\\/p>\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Maldives','Maldives,Indian Subcontinent','','16505',131500,131500,4,'36_1617108890_0.jpg,36_1617109168_0.jpg,36_1617109292_0.jpg,36_1617109794_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-03-26 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'Maldives','133','2021-03-26 00:00:00','2021-03-26 00:00:00',1,1,'1','1','0','','','',NULL,'sun-siyam-iru-veli-emi-offer',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,
`UpdateDate` datetime NOT NULL,
`query_type` enum('1','0') NOT NULL DEFAULT '1',
`packageName` varchar(256) NOT NULL,
`noofNights` int NOT NULL DEFAULT '0',
`IsCustEdit` enum('1','0') NOT NULL DEFAULT '0',
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` 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_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,
`Title` varchar(500) NOT NULL,
`CitySysId` int NOT NULL,
`day` int NOT NULL,
`Description` text,
`Image` varchar(256) DEFAULT NULL,
`sightseeingType` int NOT NULL,
`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,
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 `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=32 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 */;
/*!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_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 AUTO_INCREMENT=3 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 */;
INSERT INTO `tbl_available_destination` VALUES (1,'go_fly_smart','DEL','IXB',0,'2023-01-06 07:08:37','2023-01-06 07:08:37'),(2,'go_fly_smart','DEL','PNQ',0,'2023-01-06 07:08:37','2023-01-06 07:08:37');
/*!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_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 AUTO_INCREMENT=14 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 */;
INSERT INTO `tbl_car_booking` VALUES (12,0,0,37,'FD0BI257829-3864EAE5-0E48-4897-9E90-BC59A422C815','0000-00-00','cab5fd0bae75b646','Ok','{\"amount\":\"1523\",\"numberofcars\":\"1\",\"tarceId\":\"3864EAE5-0E48-4897-9E90-BC59A422C815\",\"data\":{\"count\":10,\"onewaydist\":0,\"onewayprice\":0,\"leftoverdistance\":0,\"leftoverprice\":0,\"gston\":0,\"gst\":0,\"totlamt\":0,\"vehicle\":\"Tata Indigo\",\"sourceCity\":\"Delhi\",\"destinationCity\":null,\"seatingCapacity\":4,\"perKm\":\"9.50\",\"MinimumChargedDistance\":null,\"driverCharges\":null,\"nightHalt\":null,\"vpic\":\"tata-indigo.jpg\",\"VehicleCategory\":\"Sedan\",\"hillCharges\":null,\"stateBorderCharges\":null,\"days\":\"1\",\"ApproxDistance\":null,\"ServiceTax\":\"5.00\",\"basicRate\":null,\"serviceTaxAmount\":72.5,\"totalAmount\":1523,\"hostUrl\":\"admin.clearcarrental.com\",\"responseCode\":1}}','700005755249','',1,'','ganesh@catpl.co.in','8585960381','','',''),(13,0,0,37,'RT0BI257839-67431487-1E92-BA8F-A225-AC39291711C4','0000-00-00','cab5fd0c75f509e1','Ok','{\"amount\":\"43050\",\"numberofcars\":\"2\",\"tarceId\":\"67431487-1E92-BA8F-A225-AC39291711C4\",\"data\":{\"count\":15,\"onewaydist\":255,\"onewayprice\":2358.75,\"leftoverdistance\":255,\"leftoverprice\":2358.75,\"gston\":4967.5,\"gst\":248.375,\"totlamt\":5215.875,\"vehicle\":\"Tata Indica\",\"sourceCity\":\"Delhi\",\"destinationCity\":\"Jaipur\",\"seatingCapacity\":4,\"perKm\":9.25,\"MinimumChargedDistance\":250,\"driverCharges\":250,\"nightHalt\":0,\"vpic\":\"tata-indica.jpg\",\"VehicleCategory\":\"Hatchback\",\"hillCharges\":0,\"stateBorderCharges\":0,\"days\":\"8\",\"ApproxDistance\":510,\"ServiceTax\":\"5.00\",\"basicRate\":20500,\"serviceTaxAmount\":1025,\"totalAmount\":21525,\"hostUrl\":null,\"responseCode\":null}}','700005755289','',1,'','ganesh@catpl.co.in','8585960381','','','');
/*!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 */;
INSERT INTO `tbl_comments` VALUES (1,2,'helloGTX','vijay@catpl.co.in','934343333','this is for testing',1,'2018-07-06 18:06:21'),(2,1,'Utilitiesss','nikita@catpl.co.in','934343333','tet ddd',1,'2018-07-06 18:14:20'),(3,18,'dgdfgdf','myindianholidays@gmail.com','dfgdfg','dfgdfg',1,'2018-08-14 16:45:03'),(4,18,'mangal','mangal@catpl.co.in','google.com','test message',1,'2018-08-14 17:09:32');
/*!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,
`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,
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 */;
INSERT INTO `tbl_common_box` VALUES (1,'','','1','B2C Demo GTX | Get Best Travel Deals','travel deals','Get best deals on travel with B2C Demo GTX.','','','','');
/*!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=8 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,'',0,'2021-02-22 18:46:16','2021-02-22 18:46:16','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,1),(2,'India','india','India',101,'',0,'2021-02-22 18:46:16','2021-02-22 18:46:16','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,1),(3,'Mauritius','mauritius','Mauritius',139,'',0,'2021-02-26 12:00:38','2021-02-26 12:00:38','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),(4,'South Africa','south-africa','South Africa',195,'',0,'2021-02-26 18:45:49','2021-02-26 18:45:49','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),(5,'Maldives','maldives','Maldives',133,'',0,'2021-03-04 13:34:29','2021-03-04 13:34:29','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','','<script>\r\nhi\r\n</script>',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'Russia','russia','Russia',507,'',0,'2021-03-04 14:34:18','2021-03-04 14:34:18','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),(7,'Russian Federation','russian-federation','Russian Federation',181,'',0,'2021-03-04 14:34:18','2021-03-04 14:34:18','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=103 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.012932,'1'),(3,1,3,0.021642,'1'),(4,1,8,0.091337,'1'),(5,1,11,0.010969,'1'),(6,1,17,1.43793,'1'),(7,1,28,0.018702,'1'),(8,1,29,0.423793,'1'),(9,1,32,0.01197,'1'),(10,1,33,0.0475,'1'),(11,2,1,77.33024,'1'),(12,2,2,1,'1'),(13,2,3,1.673556,'1'),(14,2,8,7.063105,'1'),(15,2,11,0.848251,'1'),(16,2,17,111.195507,'1'),(17,2,28,1.44625,'1'),(18,2,29,32.772004,'1'),(19,2,32,0.92568,'1'),(20,2,33,3.673203,'1'),(21,3,1,46.207137,'1'),(22,3,2,0.59753,'1'),(23,3,3,1,'1'),(24,3,8,4.220417,'1'),(25,3,11,0.506855,'1'),(26,3,17,66.442649,'1'),(27,3,28,0.864178,'1'),(28,3,29,19.582255,'1'),(29,3,32,0.553122,'1'),(30,3,33,2.194849,'1'),(31,8,1,10.948476,'1'),(32,8,2,0.141581,'1'),(33,8,3,0.236943,'1'),(34,8,8,1,'1'),(35,8,11,0.120096,'1'),(36,8,17,15.743147,'1'),(37,8,28,0.204761,'1'),(38,8,29,4.639886,'1'),(39,8,32,0.131058,'1'),(40,8,33,0.520055,'1'),(41,11,1,91.16439,'1'),(42,11,2,1.178897,'1'),(43,11,3,1.97295,'1'),(44,11,8,8.326674,'1'),(45,11,11,1,'1'),(46,11,17,131.088052,'1'),(47,11,28,1.70498,'1'),(48,11,29,38.634818,'1'),(49,11,32,1.091281,'1'),(50,11,33,4.330328,'1'),(51,17,1,0.695444,'1'),(52,17,2,0.008993,'1'),(53,17,3,0.015051,'1'),(54,17,8,0.06352,'1'),(55,17,11,0.007628,'1'),(56,17,17,1,'1'),(57,17,28,0.013006,'1'),(58,17,29,0.294724,'1'),(59,17,32,0.008325,'1'),(60,17,33,0.033034,'1'),(61,28,1,53.469486,'1'),(62,28,2,0.691443,'1'),(63,28,3,1.157169,'1'),(64,28,8,4.883738,'1'),(65,28,11,0.586517,'1'),(66,28,17,76.885402,'1'),(67,28,28,1,'1'),(68,28,29,22.659987,'1'),(69,28,32,0.640055,'1'),(70,28,33,2.539812,'1'),(71,29,1,2.359643,'1'),(72,29,2,0.030514,'1'),(73,29,3,0.051067,'1'),(74,29,8,0.215523,'1'),(75,29,11,0.025883,'1'),(76,29,17,3.393003,'1'),(77,29,28,0.044131,'1'),(78,29,29,1,'1'),(79,29,32,0.028246,'1'),(80,29,33,0.112084,'1'),(81,32,1,83.538853,'1'),(82,32,2,1.080287,'1'),(83,32,3,1.807921,'1'),(84,32,8,7.630181,'1'),(85,32,11,0.916354,'1'),(86,32,17,120.123061,'1'),(87,32,28,1.562365,'1'),(88,32,29,35.40317,'1'),(89,32,32,1,'1'),(90,32,33,3.968113,'1'),(91,33,1,21.052539,'1'),(92,33,2,0.272242,'1'),(93,33,3,0.455612,'1'),(94,33,8,1.922874,'1'),(95,33,11,0.230929,'1'),(96,33,17,30.272087,'1'),(97,33,28,0.39373,'1'),(98,33,29,8.921916,'1'),(99,33,32,0.252009,'1'),(100,33,33,1,'1'),(101,83,1,0.71,'1'),(102,1,83,1.41,'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,
`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 AUTO_INCREMENT=109 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 */;
INSERT INTO `tbl_customer` VALUES (40,89917,5099,0,0,'anuradha@catpl.co.in','1',0,'0','8765467887','Honey','Gupta','',0,5099,'1993-06-07',NULL,NULL,NULL,NULL,NULL,'A-67','Mumbai','18676',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-31','0','1','5-2954030779_1BOMJAI6E6348_16553125022189312',NULL,'2020-10-31 11:00:09','2020-10-31 17:13:30','0',NULL),(39,89270,5099,0,0,'ganeshku73@gmail.com','1',0,'0','8585960381','ganesh','singh','',0,5099,'1994-12-17','xaxaxaxaxaxa','IN','2022-10-18','2016-04-20',NULL,'noida','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-31','0','1','10-3963371543_2DELBOMUK955_16552070917068177',NULL,'2020-10-31 10:43:54','2020-10-31 11:15:33','0',NULL),(38,90035,5099,0,0,'sudiptacatpl@gmail.com','1',0,'0','9818999760','Sudipta','Banerjee','',0,5099,'1924-06-07',NULL,NULL,NULL,NULL,NULL,'Address','Delhi','7701',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-30','0','1','5-2262213760_1DELJAI6E114_16494916231723378',NULL,'2020-10-30 18:50:40','2020-10-30 18:50:40','0',NULL),(37,89917,5099,0,0,'anuradha@catpl.co.in','1',0,'0','9067865467','Roshan','Thakur','',0,5099,'1991-09-16',NULL,NULL,NULL,NULL,NULL,'H-90','Benghazi','2908',1,0,'123','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-30','0','1','16-5643665733_0DELJAII5920_16486402732837275',NULL,'2020-10-30 16:27:55','2020-10-30 16:27:55','0',NULL),(36,96134,5293,0,0,'anuradha@catpl.co.in','1',0,'0','9997534969','Gaurav','Saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','10-7281030274_0DELATQH11862ATQJAIH11859_16486104381614641',NULL,'2020-10-30 16:25:19','2021-03-18 18:16:48','0',NULL),(35,89258,5099,0,0,'arvind14s@gmail.com','3',0,'0','09959096889','arvind','kumar','',0,5099,'1985-01-05',NULL,NULL,NULL,NULL,NULL,'A-78','Hyderabad','12538',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-30','0','1','16-3193496298_0HYDDELI5755_16484970913629855',NULL,'2020-10-30 16:13:37','2020-10-30 16:23:34','0',NULL),(34,89917,5099,0,0,'anuradha@catpl.co.in','3',0,'0','8978098765','Dolly','saini','',0,5099,'1996-03-04',NULL,NULL,NULL,NULL,NULL,'A-78','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-30','0','1','5-0007028436_1DELJAI6E284_16483408902137833',NULL,'2020-10-30 15:44:31','2020-10-30 15:44:31','0',NULL),(33,90013,5099,0,0,'erdeepakg1@gmail.com','1',0,'0','9695357709','Deepak','Gupta','',0,5099,'1933-10-11',NULL,NULL,NULL,NULL,NULL,'ghjfgjh','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-03','0','1','5-2025891723_0DELBOM6E148_16472736093467528',NULL,'2020-10-30 12:40:42','2020-11-03 12:39:30','0',NULL),(32,94418,5293,0,0,'muskancatpl@gmail.com','2',0,'0','9634022688','surbhi','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-09','0','1','5-6198188909_8HYDDEL6E5002_16382883127480904',NULL,'2020-10-29 11:51:32','2021-03-09 17:39:03','0',NULL),(31,90444,5155,0,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5155,'1941-07-21',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-09','0','1','5-4226157422_0DELJAI6E114_16381024121663895',NULL,'2020-10-29 11:11:49','2020-11-09 14:48:08','0',NULL),(89,132,1,0,0,'mangal@catpl.co.in','MR',0,'Other','7727052691','MANGAL','KATIYAR','',0,1,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12','0','1','5-7650331241_3DELBOM6E2173_27889207689940875',NULL,'2021-03-11 15:54:19','2021-04-12 12:43:27','0',NULL),(29,103022,5293,0,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,'kjioplkio','IN','2024-03-21','2001-03-08',NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23','0','1','16-0431399196_2DELBLRI5740BLRBOMI5983_16315461252645439',NULL,'2020-10-28 16:58:45','2021-03-23 15:21:17','0',NULL),(88,94418,5293,0,0,'muskancatpl@gmail.com','3',0,'0','9643022688','muskan','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-04','0','1','5-3884445213_35DELBOM6E665_27274788804552042',NULL,'2021-03-04 13:14:34','2021-03-04 13:14:34','0',NULL),(42,90090,5099,0,0,'erdeepak1+3@gmail.com','1',0,'0','7894561239','nnnn','mmmm','202cb962ac59075b964b07152d234b70',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(43,90091,5099,0,0,'erdeepakg1@+2gmail.com ','1',0,'0','1234567791','Accg','Hhj','202cb962ac59075b964b07152d234b70',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(44,89139,5099,0,0,'Rahuldey3499@gmail.com','1',0,'0','8886077750','Rahul','Kumar','',0,5099,'1999-04-03',NULL,NULL,NULL,NULL,NULL,'Hyderabad','Hyderabad','12538',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-10-31','0','1','5-7740542743_0HYDBOM6E6329_16581826105743624',NULL,'2020-10-31 18:59:10','2020-10-31 18:59:10','0',NULL),(30,92363,5155,0,0,'ganesh@catpl.co.in','1',0,'0','8585960381','sdfgsdg','dfgsdfgsdfg','',0,5155,NULL,NULL,'IN',NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-30','0','1',NULL,NULL,NULL,'2020-12-30 16:29:44','0',NULL),(46,90130,5099,0,0,'1234','1',0,'0','9695357709','Aaaa','Bbbb','202cb962ac59075b964b07152d234b70',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(47,90133,5099,0,0,'erdeepakg1+5@gmail.com','1',0,'0','9695357709','Deepak','Gupta','81dc9bdb52d04dc20036dbd8313ed055',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(48,90013,5099,0,0,'erdeepakg1@gmail.com','1',0,'0','09695357709','Deepak','Gupta','',0,5099,'1927-06-05',NULL,NULL,NULL,NULL,NULL,'Sec-37, NOIDA,U.P','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-03','0','1','4-7772164768_3DELHYDSG472HYDBOMSG704_16820440047025056',NULL,'2020-11-03 13:16:02','2020-11-03 13:16:02','0',NULL),(49,94418,5293,0,0,'muskancatpl@gmail.com','3',0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,'NHJHKJ7689','IN','2025-12-25','2019-12-25',NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-02-26','0','1','16-7928554262_12DELBLRI5740BLRBOMI5306_17099112874718627',NULL,'2020-11-06 18:42:48','2021-02-26 17:11:18','0',NULL),(50,90517,5155,0,0,'manisha.matai765@gmail.com','1',0,'0','8948408390','Manisha','Matai','',0,5155,'1993-12-13',NULL,NULL,NULL,NULL,NULL,'LiG95 Barra 4','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-09','0','1','4-9505264767_4DELHYDSG472HYDBOMSG704_17345500379979545',NULL,'2020-11-09 15:07:06','2020-11-09 15:07:06','0',NULL),(51,90098,5155,0,0,'bmatai12@gmail.com','1',0,'0','8604444404','Bhupesh','Matai','',0,5155,'1993-12-13',NULL,NULL,NULL,NULL,NULL,'LIG 95','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-09','0','1','4-5092587265_4DELHYDSG472HYDBOMSG704_17346589245547283',NULL,'2020-11-09 15:24:20','2020-11-09 15:24:20','0',NULL),(52,90525,5155,0,0,'namansingh1994@gmail.com','1',0,'0','8299811436','Naman','Singh','',0,5155,'1994-01-16',NULL,NULL,NULL,NULL,NULL,'127/714 S Block, Juhi Hamirpur Road','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-11-09','0','1','5-9929230782_0LKODEL6E2425_17348289400073329,5-9929230782_0DELLKO6E906_17348289377910175',NULL,'2020-11-09 15:52:54','2020-11-09 15:52:54','0',NULL),(53,92470,5155,0,0,'matailata@gmail.com','3',0,'0','8687110948','Lata','Matai','',0,5155,'1968-12-17',NULL,NULL,NULL,NULL,NULL,'LIG - 95, Barra - 4','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-04','0','1',NULL,NULL,NULL,'2020-12-04 22:35:54','0',NULL),(54,92819,5155,0,0,'bbmatai12@hotmail.com','1',0,'0','8604444404','Bhupesh','Matai','',0,5155,'1945-12-13',NULL,NULL,NULL,NULL,NULL,'LIG - 95','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-11','0','1','4-3396415670_3DELHYDSG472HYDBOMSG704_20101113028371939',NULL,'2020-12-11 12:56:20','2020-12-11 12:56:20','0',NULL),(55,92966,5155,0,0,'rastafaritravels@gmail.com','1',0,'0','8604444404','Nikhil','Verma','',0,5155,'1945-12-12',NULL,NULL,NULL,NULL,NULL,'Barra 4','Kanpur','13516',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-12','0','1','5-7224097495_7DELDED6E176DEDLKO6E844_20213297417384961',NULL,'2020-12-12 19:43:02','2020-12-12 19:43:02','0',NULL),(56,93900,5155,0,0,'deepak.catpl@gmail.com','1',0,'0','9695357709','Deepak','Kumar','',0,5155,NULL,'jpori','IN','2023-12-07','2019-06-19',NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-31','0','1','5-7422129126_22BOMDEL6E2059_21063772111135513',NULL,'2020-12-22 16:04:55','2020-12-31 18:23:01','0',NULL),(57,0,37,0,0,'gaurav@catpl.co.in','1',0,'0','9811192312','gaurav','gupta','',0,37,NULL,NULL,NULL,NULL,NULL,NULL,'asd','Delhi','7701',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-22','0','1','4-9454654565_2DELHYDSG472HYDBOMSG704_21073407457893706',NULL,'2020-12-22 18:38:03','2020-12-22 18:38:03','0',NULL),(58,0,37,0,0,'abcshg@catpl.co.in','1',0,'0','8585960382','sfasdf','safdasdfs','',0,37,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-24','0','1','5-8187079952_5DELBOM6E6957_21241390703201108',NULL,'2020-12-24 17:24:47','2020-12-24 17:24:47','0',NULL),(59,0,37,0,0,'d7iiojra111@gmai.com','2',0,'0','5253636363','Vdd','Fcgh','',0,37,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-12-24','0','1','5-2247588738_0DELBOM6E148_21246864535338926',NULL,'2020-12-24 18:49:18','2020-12-24 18:49:18','0',NULL),(60,93764,5155,0,0,'catplss5d1@catpl.co.in','1',0,'0','8585960373','ganesh','catpl','202cb962ac59075b964b07152d234b70',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(61,93768,5155,0,0,'baibhavrishu91@gmail.com','1',0,'0','7701888604','baibhav','kumar','81dc9bdb52d04dc20036dbd8313ed055',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(62,104941,5293,0,0,'deepak@catpl.co.in','1',0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,'er','IN','2021-06-15','2021-03-16',NULL,'','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22','0','1',NULL,NULL,NULL,'2021-03-22 12:02:49','0',NULL),(63,94257,5155,0,0,'ganesh12@catpl.co.in','1',0,'0','7052778659','Er','Ganesh','827ccb0eea8a706c4c34a16891f84e7b',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0','1749996115182276'),(64,94266,5155,0,0,'sudipta.catpl@gmail.com','1',0,'0','9818999760','Sudipta','Banerjee','d6c722e0ca771ab08b789d79e6823a8b',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(65,94276,5155,0,0,'test@catpl.co.in','1',0,'0','7052867785','test','12345','827ccb0eea8a706c4c34a16891f84e7b',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0','+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(80,95069,5293,0,0,'baibhav@catpl.co.in','1',0,'0','7701888604','baibhav','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26','0','1','5-5168122564_6DELBOM6E408_22956555028846704',NULL,'2021-01-13 13:45:11','2021-03-26 11:05:03','0',NULL),(81,225,37,0,0,'taransinghbatra@gmail.com','1',0,'0','9899923966','TARAN','BATRA','',0,37,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-01-18','0','1','10-5368135317_0DELCOKUK881_23386464318757713,10-5368135317_0COKDELUK882_23386464296565614',NULL,'2021-01-18 13:10:41','2021-01-18 13:10:41','0',NULL),(82,226,37,0,0,'parth@ineedtrip.co.in','1',0,'0','9953742503','PARTH','GUPTA','',0,37,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-01-18','0','1','5-9306908491_10DELCOK6E2046_23386793301681330,5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551',NULL,'2021-01-18 13:14:26','2021-01-18 13:14:26','0',NULL),(84,102707,5293,0,0,'taransinghbatra@gmail.com','1',0,'0','9999579641','TARAN PAL SINGH','BATRA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-02-18','0','1','5-5807052777_3DELBOM6E6957_26102422272535360,10-5807052777_0BOMDELUK988_26102418741533436',NULL,'2021-02-18 23:38:13','2021-02-18 23:38:13','0',NULL),(87,102707,5293,0,0,'taransinghbatra@gmail.com','1',0,'0','9891715178','TARAN','BATRA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-02-19','0','1','5-5935728671_0DELCOK6E2046_26148917315319499',NULL,'2021-02-19 12:34:42','2021-02-19 12:34:42','0',NULL),(90,105309,5293,0,0,'mangal@catpl.co.in','1',0,'0','7727052631','mangal','katiyar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-11','0','1','5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006',NULL,'2021-03-11 15:57:56','2021-03-11 15:57:56','0',NULL),(91,104941,5293,0,0,'deepak@catpl.co.in','1',0,'0','96953657709','Deepak','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-12','0','1','5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609',NULL,'2021-03-12 16:33:37','2021-03-12 16:33:37','0',NULL),(93,105489,5642,5293,0,'sibo.sarso@gmail.com','1',0,'0','8447455883','md','sabir','',0,5642,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-12','0','1','abfb1-42396-789f8-fea42',NULL,'2021-03-12 18:56:08','2021-03-12 18:56:08','0',NULL),(94,103115,5293,0,0,'ganesh@catpl.co.in','1',0,'0','85859603841','ganesh','catpl','',0,5293,'1956-03-22','sadfsa789','IN','2022-03-16','2015-03-12',NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0',NULL),(95,106434,5293,0,0,'baibhavrishu@gmail.com','1',0,NULL,'7701888604','baibhav','kumar','827ccb0eea8a706c4c34a16891f84e7b',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(98,106460,5293,0,0,'sudipta.catpl@gmail.com','1',0,'0','8860259858','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,'2021-03-18 13:50:51','2021-03-18 13:52:53','0',NULL),(99,106515,5293,0,0,'deepak.catpl@gmail.com','1',0,'0','8318864487','Arya','kumar','',0,5293,'1946-03-11','ghkhlj','IN','2022-03-15','2017-03-15',NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-9901803256_12MAADELSG108DELCCUSG253_28491484726828984',NULL,'2021-03-18 15:12:46','2021-03-18 16:07:22','0',NULL),(100,106620,5293,0,0,'ganesh1@catpl.co.in','1',0,NULL,'8585960381','ganesh','catpl','827ccb0eea8a706c4c34a16891f84e7b',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(101,106778,5293,0,0,'ashish.upadhyay@ineedtrip.com','1',0,NULL,'9899923966','Ashish ','Upadhyay','55d733198e26006cabf3802d14ea3f90',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL),(102,106863,5293,0,0,'ancd@catpl.co.in','1',0,'0','7072253698','GANESH','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'noida','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','4-2301243350_1DELBOMSG8723_38951715837960',NULL,'2021-03-19 19:51:12','2021-03-19 19:51:12','0',NULL),(103,106963,5293,0,0,'gpurwar@gmail.com','1',0,'0','9811192312','GAURAV','GUPTA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22','0','1','1-2170632972_1DELGOIG8194_13657340435244,1-2170632972_1GOIDELG8195_13657333012608',NULL,'2021-03-22 11:52:28','2021-03-22 11:52:28','0',NULL),(104,107054,5293,0,0,'anuradh@catpl.co.in','3',0,'0','9997534969','Anuradha','Saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22','0','1','5-9811598189_0DELBOM6E148_581579652574361',NULL,'2021-03-22 17:52:46','2021-03-22 17:52:46','0',NULL),(106,99280,5293,0,0,'gagasingh@gmail.com','1',0,'0','8588866554','GAGAN DEEP SINGH','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25','0','1','1-7012619301_0DELGOIG8300_19403683051304,5-7012619301_23GOIDEL6E5178_19405731714857',NULL,'2021-03-25 13:54:55','2021-03-25 13:54:55','0',NULL),(107,107497,5293,0,0,'maroof.kazmi@gmail.com','1',0,'0','7599365720','Narendra','Modi','',0,5293,NULL,'p7961896','IN','2027-03-10','2017-03-09',NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26','0','1','21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990',NULL,'2021-03-26 15:44:40','2021-03-26 15:44:40','0',NULL),(108,107874,5293,0,0,'faizanlari5@gmail.com','1',0,'0','8874249264','FAIZANULLAH','FAIZANULLAH','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-27','0','1','5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,'2021-03-27 19:35:51','2021-03-27 19:35:51','0',NULL);
/*!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,
`countryCode` varchar(50) DEFAULT NULL,
`companyname` varchar(100) DEFAULT NULL,
`gstnnumber` varchar(100) DEFAULT NULL,
`gstaddress` varchar(250) DEFAULT NULL,
`gstcity` varchar(100) DEFAULT NULL,
`gststate` varchar(100) DEFAULT NULL,
`gstpincode` varchar(10) 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',
PRIMARY KEY (`CustomerMemberSysId`)
) ENGINE=MyISAM AUTO_INCREMENT=391 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 */;
INSERT INTO `tbl_customer_member` VALUES (230,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Deepak','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-12','0','1','5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976',NULL,'2021-03-12 16:27:58','2021-03-12 16:27:58','0'),(229,32,0,5293,0,'muskancatpl@gmail.com','3',0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-09','0','1','5-6998295847_26DELBOM6E5379_27722677486581805',NULL,'2021-03-09 17:39:04','2021-03-09 17:39:04','0'),(228,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Vivek','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','10-4351799974_12DELBOMH19442_27699110326595530',NULL,'2021-03-09 11:07:39','2021-03-17 19:25:21','0'),(226,49,0,5293,0,'muskancatpl@gmail.com','1',0,'other','9634022688','surbhi','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-09','0','1','5-9255944805_0DELBOM6E5379_26770621706843463',NULL,'2021-02-26 17:11:19','2021-03-09 17:39:04','0'),(227,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,'1954-02-17','12345','IN','2022-02-15','2021-02-22','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',NULL,'2021-02-26 17:16:44','2021-03-17 12:23:07','0'),(231,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','A1','K1','',0,5293,'1946-03-17','hfdfe1234','IN','2022-09-22','2018-03-21','','','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-15','0','1','4-8570480046_0DELDXBSG131DXBDELSG12_28222550665637553',NULL,'2021-03-15 12:46:03','2021-03-15 12:46:03','0'),(232,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','A1','K1','',0,5293,'1946-03-17','hfdfe1234','IN','2022-09-22','2018-03-21','','','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-15','0','1','10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',NULL,'2021-03-15 13:07:33','2021-03-15 13:07:33','0'),(233,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','C1','K1','',0,5293,'2020-03-25','gsdh5285','IN','2023-03-14','2015-03-18','','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',NULL,'2021-03-15 13:07:33','2021-03-17 13:54:22','0'),(234,62,0,5293,0,'deepak@catpl.co.in','2',0,'0','9695357709','I1','K1','',0,5293,'2020-03-12','ikdt','IN','2024-03-19','2021-03-18','','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',NULL,'2021-03-15 13:07:33','2021-03-18 13:59:23','0'),(235,29,0,5293,0,'sudipta@catpl.co.in','2',0,'0','9818999760','Ranu','Banerjee','',0,5293,NULL,'kjhjkhkjhkjhkj','IN','2022-03-18','2002-03-01','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',NULL,'2021-03-16 15:17:59','2021-03-18 13:39:39','0'),(236,29,0,5293,0,'sudipta@catpl.co.in','2',0,'0','9818999760','Parth','Banerjee','',0,5293,'2020-03-19','jhkjhjkhkjhkjhkj','IN','2023-03-30','2002-03-15','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',NULL,'2021-03-16 15:17:59','2021-03-18 13:39:39','0'),(237,29,0,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Kritika','Bhattacharaya','',0,5293,'2013-03-08','olkiolki','IN','2027-03-11','2015-03-06','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',NULL,'2021-03-16 15:17:59','2021-03-16 20:01:44','0'),(238,29,0,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Kaira','Thakur','',0,5293,'2020-03-12','uuiuiuiiui','IN','2028-03-24','2011-03-04','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',NULL,'2021-03-16 15:17:59','2021-03-16 20:01:44','0'),(239,29,0,5293,0,'sudipta@catpl.co.in','2',0,'0','9818999760','Dhruv','Banerjee','',0,5293,'2020-03-19','qwertyuio','IN','2023-03-30','2005-03-17','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',NULL,'2021-03-16 15:17:59','2021-03-16 20:01:44','0'),(251,30,0,5293,0,'ganesh@catpl.co.in','2',0,'other','8585960381','SAFDASF','SADFSADFASF','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(250,30,0,5293,0,'ganesh@catpl.co.in','2',0,'other','8585960381','safdsadf','sdaD','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(249,30,0,5293,0,'ganesh@catpl.co.in','2',0,'other','8585960381','ahsda','asad','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(248,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','manish','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(247,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','baibhav','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(246,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(252,30,0,5293,0,'ganesh@catpl.co.in','2',0,'other','8585960381','ASDFASF','AFDSADDFSA','',0,5293,'2021-03-03',NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(253,30,0,5293,0,'ganesh@catpl.co.in','2',0,'other','8585960381','ASDASF','FSADFSA','',0,5293,'2021-03-02',NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(254,30,0,5293,0,'ganesh@catpl.co.in','1',0,'other','8585960381','SASDF','ADasda','',0,5293,'2021-03-08',NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16','0','1','5-0353392758_11DELBOM6E2077_28328102504599478',NULL,'2021-03-16 17:51:10','2021-03-16 17:51:10','0'),(262,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','sanjit','catpl','',0,5293,'2015-03-24','3698745112','IN','2022-03-29','2019-03-30','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(261,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','vivek','catpl','',0,5293,'2013-03-12','axxxibbbb45','IN','2025-03-19','2012-03-22','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(260,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','baibhav','catpl','',0,5293,'1957-03-20','65412378','IN','2024-03-26','2018-03-20','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(259,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','Ganesh','catpl','',0,5293,'1957-03-20','12345678','IN','2025-03-17','2017-03-16','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(263,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','sabir','catpl','',0,5293,'2020-03-12','sdfasfdasf545487','IN','2026-03-11','2020-04-20','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(264,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','asdfasfd','asfasdf','',0,5293,'2020-03-18','sdfsfasdfasf545','IN','2023-03-21','2020-03-17','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',NULL,'2021-03-17 10:42:08','2021-03-17 10:42:08','0'),(288,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','baibah','catpl','',0,5293,NULL,'798798sdfsdfs','IN','2027-03-24','2020-03-25','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 10:55:40','0'),(287,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','ffhgfh','fdhfhfh','',0,5293,NULL,'7895465sdfsfsf','IN','2025-03-19','2020-03-24','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 10:55:40','0'),(283,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','Ganesh','Catpl','',0,5293,NULL,'7896541sadad','IN','2024-03-13','2014-03-18','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 10:55:40','0'),(286,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','Vivek','catpl','',0,5293,NULL,'asfdasfd546878','IN','2026-03-18','2020-03-26','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 10:55:40','0'),(285,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','shivam','catpl','',0,5293,'2016-03-22','aDSasdadds554','IN','2030-03-26','2017-03-21','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 12:23:07','0'),(284,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','rahul','catpl','',0,5293,NULL,'sfsdsfd46578','IN','2026-03-18','2018-03-21','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2093631492_171DELHYD6E2164HYDDXB6E8488DXBBOM6E62BOMDEL6E2036_28389181800007213',NULL,'2021-03-17 10:55:40','2021-03-17 10:55:40','0'),(294,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','DFGDSG','SDFFGDFD','',0,5293,'2018-03-21','DSFGDSG797','IN','2027-03-31','2019-03-19','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 11:02:42','0'),(293,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','deepk','catpl','',0,5293,'1953-03-25','SDADAD4654DF','IN','2028-03-28','2014-03-18','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 11:02:42','0'),(292,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','Ganesh','Ctapl','',0,5293,'1953-03-25','789654123','IN','2025-03-26','2014-03-18','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 11:02:42','0'),(295,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','SANNY','CATPL','',0,5293,'2018-03-21','DDASFASF975','IN','2026-03-24','2019-03-19','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 12:23:07','0'),(296,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','VIVEK','CATPL','',0,5293,'2020-03-25','SAFDSSADF9897SD','IN','2024-03-05','2021-01-12','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 11:02:42','0'),(297,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','AFDSF','SADFSA','',0,5293,'2020-03-17','SADFSAF454','IN','2029-03-21','2020-03-19','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',NULL,'2021-03-17 11:02:42','2021-03-17 11:02:42','0'),(300,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','Ganesh','Catpl','',0,5293,'1949-03-02','45997987fdf','IN','2024-03-28','2017-03-21','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 11:27:55','0'),(301,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','vivek','catpl','',0,5293,'1949-03-02','sadfsf5445','IN','2026-03-19','2015-03-18','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 11:27:55','0'),(302,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','DSFGSD','DFGDS','',0,5293,'2018-03-14','DSFGDS4564','IN','2027-03-23','2019-03-19','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 11:27:55','0'),(303,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','DSFGDSG','DFGDSG','',0,5293,'2017-03-28','SAFASFFS879','IN','2022-03-08','2018-03-21','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 11:27:55','0'),(304,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','SAFASFD','SFDASF','',0,5293,'2020-03-18','FASFD7987','IN','2027-03-24','2020-03-26','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 12:23:07','0'),(305,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','SADFASFERT','WERTBNB','',0,5293,'2020-03-10','SADFASF455','IN','2023-03-21','2020-03-18','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',NULL,'2021-03-17 11:27:55','2021-03-17 12:23:07','0'),(313,30,0,5293,0,'GANESH@CATPL.CO.IN','2',0,'0','8585960381','Deepak','Catpl','',0,5293,'2018-03-20','sdfsadf545','IN','2025-03-25','2017-03-29','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(312,30,0,5293,0,'GANESH@CATPL.CO.IN','2',0,'0','8585960381','ASDFAS','SDFSFGG','',0,5293,'2017-03-22','78964521','IN','2024-03-27','2018-03-21','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(311,30,0,5293,0,'GANESH@CATPL.CO.IN','1',0,'0','8585960381','SAFSAFDA','SDFSAF','',0,5293,'1961-03-16','SDFSAFS','IN','2026-03-24','2018-03-22','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(310,30,103115,5293,0,'GANESH@CATPL.CO.IN','1',0,'0','8585960381','GANESH','CATPL','',0,5293,'1961-03-16','AFSAFDSF','IN','2023-03-22','2017-03-25','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(314,30,0,5293,0,'GANESH@CATPL.CO.IN','2',0,'0','8585960381','asfsafd','sdfsaf','',0,5293,'2020-03-17','sadfsadf5465','IN','2025-03-12','2020-05-18','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(315,30,0,5293,0,'GANESH@CATPL.CO.IN','2',0,'0','8585960381','sdfasfsdc','asdfasfsf','',0,5293,'2020-03-24','dfgdsg455df','IN','2028-03-22','2020-04-21','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',NULL,'2021-03-17 11:50:53','2021-03-17 11:50:53','0'),(321,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','asfdasfdsa','safsafs','',0,5293,'2019-03-13','safdsaf5456','IN','2021-03-31','2021-03-23','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(320,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','asfsaf','safsafs','',0,5293,'1957-03-22','sadfsafs','IN','2024-03-06','2017-03-09','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(319,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','vivek','catl','',0,5293,'1957-03-22','safsf456487sdf','IN','2025-03-05','2018-03-16','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(322,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','afsafdsf','sfdsaf','',0,5293,'2019-03-07','fss4sfsdfsfs','IN','2027-03-31','2008-03-14','sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(323,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','dsfgfsdfg','dfgdsgfd','',0,5293,'2020-03-19','dsfgsdfgd54','IN','2028-03-29','2020-03-25','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(324,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','dsfgsdg','dsfgsdfg','',0,5293,'2020-03-18','asfasf54','IN','2024-03-28','2020-04-16','sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,'2021-03-17 12:06:07','2021-03-17 12:06:07','0'),(325,94,0,5293,0,'ganesh@catpl.co.in','1',0,'0','85859603841','sadfas','sdfsaf','',0,5293,'1956-03-22','asdfasfs','IN','2024-03-20','2006-03-22','','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0'),(326,94,0,5293,0,'ganesh@catpl.co.in','1',0,'0','85859603841','sdfsa','sadfsa','',0,5293,'2018-03-21','sadfasfa','IN','2024-03-19','2012-03-29','','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0'),(327,94,0,5293,0,'ganesh@catpl.co.in','1',0,'0','85859603841','sadfsaf','sdfsaf','',0,5293,'2015-03-04','sadfsadf465','IN','2026-03-25','2017-03-22','','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0'),(328,94,0,5293,0,'ganesh@catpl.co.in','2',0,'0','85859603841','sadfasf','sadfsaf','',0,5293,'2020-03-18','sadfasf','IN','2026-03-11','2015-03-25','','0','',3,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0'),(329,94,0,5293,0,'ganesh@catpl.co.in','2',0,'0','85859603841','asdfasf','sadfasf','',0,5293,'2020-03-12','dsfgdg456dfg','IN','2028-03-22','2020-03-18','','0','',3,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,'2021-03-17 12:14:20','2021-03-17 12:14:20','0'),(330,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','sfdsaf','sdfsdf','',0,5293,'1946-03-24','sadfasdfsa','IN','2027-03-24','2010-03-18','sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290',NULL,'2021-03-17 12:23:07','2021-03-17 12:23:07','0'),(332,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Deepak','Kumar','',0,5293,'1993-03-17','hhiljlj111','IN','2021-03-26','2020-12-16','','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',NULL,'2021-03-17 18:58:00','2021-03-17 18:58:00','0'),(333,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','AB','Kumari','',0,5293,'2020-03-24','khjl4142','IN','2020-03-25','2020-11-26','','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',NULL,'2021-03-17 18:58:00','2021-03-17 19:25:21','0'),(334,31,103022,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366',NULL,'2021-03-17 19:20:31','2021-03-17 19:20:31','0'),(335,31,103022,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','4-1451484141_0DELBOMSG8701_38041253729840',NULL,'2021-03-17 19:36:09','2021-03-17 19:36:09','0'),(336,31,103022,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17','0','1','5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697',NULL,'2021-03-17 19:38:48','2021-03-17 19:38:48','0'),(339,36,96134,5293,0,'anuradha@catpl.co.in','3',0,'0','9997534969','Annu','saini','',0,5293,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-8374846984_3DELBOMSG2871_28477589167138567',NULL,'2021-03-18 11:36:28','2021-03-18 11:36:28','0'),(340,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','C1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-8005025951_25DELBOM6E171_28478515803680618,5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',NULL,'2021-03-18 11:42:35','2021-03-18 11:42:35','0'),(341,62,0,5293,0,'deepak@catpl.co.in','2',0,'0','9695357709','I1','K1','',0,5293,'2020-03-19',NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-8005025951_25DELBOM6E171_28478515803680618,5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',NULL,'2021-03-18 11:42:35','2021-03-18 11:42:35','0'),(342,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','C2','K2','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411',NULL,'2021-03-18 13:17:57','2021-03-18 13:59:23','0'),(343,62,0,5293,0,'deepak@catpl.co.in','2',0,'0','9695357709','I2','K2','',0,5293,'2020-03-11',NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411',NULL,'2021-03-18 13:17:57','2021-03-18 13:17:57','0'),(348,98,0,5293,0,'sudipta.catpl@gmail.com','1',0,'0','8860259858','vdsafh','bhgtj','',0,5293,'2020-03-03',NULL,NULL,NULL,NULL,'','0','',3,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,'2021-03-18 13:50:51','2021-03-18 13:52:54','0'),(347,98,0,5293,0,'sudipta.catpl@gmail.com','1',0,'0','8860259858','cfwearyh','bh','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,'2021-03-18 13:50:51','2021-03-18 13:52:54','0'),(349,99,106515,5293,0,'deepak.catpl@gmail.com','1',0,'0','8318864487','Deepak','Kumar','',0,5293,'1950-03-21','hbxkduhw','IN','2022-03-16','2012-03-14','','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006',NULL,'2021-03-18 16:24:31','2021-03-18 16:24:31','0'),(350,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Deepak','kumar','',0,5293,'1946-03-17','kdfhkdy','IN','2022-07-21','2020-03-10','','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',NULL,'2021-03-18 16:59:05','2021-03-18 16:59:05','0'),(351,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-5368534800_4DELBOMSG7177_28501832856284484',NULL,'2021-03-18 18:05:27','2021-03-18 18:05:27','0'),(352,30,0,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','vivek','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-5368534800_4DELBOMSG7177_28501832856284484',NULL,'2021-03-18 18:05:27','2021-03-18 18:05:27','0'),(353,30,0,5293,0,'ganesh@catpl.co.in','2',0,'0','8585960381','baibhav','catpl','',0,5293,'2020-03-17',NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-5368534800_4DELBOMSG7177_28501832856284484',NULL,'2021-03-18 18:05:27','2021-03-18 18:05:27','0'),(357,100,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','5-4680033550_14BOMDEL6E104_28503329265929266',NULL,'2021-03-18 18:46:23','2021-03-18 18:46:23','0'),(358,100,106620,5293,0,'ganesh1@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-9441876623_3BOMDELSG2642_28505641036362367',NULL,'2021-03-18 19:08:07','2021-03-18 19:08:07','0'),(360,100,106620,5293,0,'ganesh1@catpl.co.in','1',0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-6371971645_3BOMDELSG2642_28505871562291049',NULL,'2021-03-18 19:23:39','2021-03-18 19:23:39','0'),(361,100,106620,5293,0,'ganesh1@catpl.co.in','1',0,'0','8585960381','asdad','asda','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18','0','1','4-8345789847_3DELBOMSG2871_28507432296615690,4-8345789847_1BOMDELSG790_28507432281761147',NULL,'2021-03-18 19:39:24','2021-03-18 19:39:24','0'),(362,30,103115,5293,0,'ganesh@catpl.co.in','1',0,'0','8585960381','Ganesh','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','5-0752493295_0DELBOM6E2077_28562206079233970',NULL,'2021-03-19 10:52:04','2021-03-19 10:52:04','0'),(365,56,106515,5293,0,'deepak.catpl@gmail.com','1',0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','10-3710415267_5DELBOMUK945_28563367765913530,10-3710415267_4BOMDELUK910_28563367727476583',NULL,'2021-03-19 11:20:51','2021-03-19 11:20:51','0'),(366,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','ravi','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','4-2355667927_1DELBOMSG7177_28563250991241625',NULL,'2021-03-19 11:32:03','2021-03-19 11:32:03','0'),(367,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','4-1771034981_1DELBOMSG7177_28573462518091262,4-1771034981_1BOMDELSG790_28573462502957050',NULL,'2021-03-19 13:58:19','2021-03-19 13:58:19','0'),(368,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','Deepak','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','10-4222073085_0DELBOMUK981_28584842514009237,5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,'2021-03-19 17:08:46','2021-03-19 17:08:46','0'),(369,62,0,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','RAvi','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','10-4222073085_0DELBOMUK981_28584842514009237,5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,'2021-03-19 17:08:46','2021-03-19 17:08:46','0'),(370,62,0,5293,0,'deepak@catpl.co.in','2',0,'0','9695357709','Lala','kaka','',0,5293,'2020-03-10',NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','10-4222073085_0DELBOMUK981_28584842514009237,5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,'2021-03-19 17:08:46','2021-03-19 17:08:46','0'),(371,62,104941,5293,0,'deepak@catpl.co.in','1',0,'0','9695357709','A1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','5-2514125537_0DELBOM6E2077_28585352341976144,5-2514125537_20BOMDEL6E2174_28585352288983205',NULL,'2021-03-19 17:16:28','2021-03-19 17:16:28','0'),(372,31,103022,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19','0','1','15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784',NULL,'2021-03-19 19:13:48','2021-03-19 19:13:48','0'),(373,56,106515,5293,0,'deepak.catpl@gmail.com','1',0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22','0','1','15-2537786393_33DELBOMAI537_10706474644999,1-2537786393_8BOMPATG8351PATDELG8507_10700483318707',NULL,'2021-03-22 11:01:08','2021-03-22 11:01:08','0'),(374,36,96134,5293,0,'anuradha@catpl.co.in','3',0,'0','9997534969','Annu','saini','',0,5293,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22','0','1','15-7186026392_0DELBOMUK955_557606851951809',NULL,'2021-03-22 11:28:30','2021-03-22 11:28:30','0'),(375,31,103022,5293,0,'sudipta@catpl.co.in','1',0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23','0','1','4-0633571651_11DELPATSG8480PATMAASG548_21619448367479',NULL,'2021-03-23 14:02:19','2021-03-23 14:02:19','0'),(379,106,0,5293,0,'gagasingh@gmail.com','1',0,'0','8588866554','SUKHLEEN','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25','0','1','1-7012619301_0DELGOIG8300_19403683051304,5-7012619301_23GOIDEL6E5178_19405731714857',NULL,'2021-03-25 13:54:55','2021-03-25 13:54:55','0'),(378,106,0,5293,0,'gagasingh@gmail.com','2',0,'0','8588866554','PRIYANKA','RAI','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25','0','1','1-7012619301_0DELGOIG8300_19403683051304,5-7012619301_23GOIDEL6E5178_19405731714857',NULL,'2021-03-25 13:54:55','2021-03-25 13:54:55','0'),(380,32,94418,5293,0,'muskancatpl@gmail.com','3',0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25','0','1','4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962',NULL,'2021-03-25 15:58:40','2021-03-25 15:58:40','0'),(381,108,0,5293,0,'faizanlari5@gmail.com','2',0,'0','8874249264','Asiya Faizan','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-27','0','1','5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,'2021-03-27 19:35:51','2021-03-27 19:35:51','0'),(382,108,0,5293,0,'faizanlari5@gmail.com','2',0,'0','8874249264','Samar','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-27','0','1','5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,'2021-03-27 19:35:51','2021-03-27 19:35:51','0'),(383,108,0,5293,0,'faizanlari5@gmail.com','1',0,'0','8874249264','Mannat','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-27','0','1','5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,'2021-03-27 19:35:51','2021-03-27 19:35:51','0'),(384,31,103022,5293,0,'sudipta@catpl.co.in','MR',0,'Other','9818999760','SUDIPTA','BANERJEE','',0,5293,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','',NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31','0','1','a4aa7-67416-8ad0b-8a2f4',NULL,'2021-03-31 19:20:55','2021-03-31 19:20:55','0'),(385,62,136,1,0,'deepak@catpl.co.in','MR',0,'Other','9695357709','DEEPAK','KUMAR','',0,1,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09','0','1','a122d-1a018-21c16-90ace',NULL,'2021-04-09 13:21:08','2021-04-09 13:21:08','0'),(386,62,0,1,0,'deepak@catpl.co.in','MR',0,'9','9695357709','VIVEK','KUMAR','',0,1,NULL,NULL,NULL,NULL,NULL,'Not Required','Not Required','Not Required',1,0,'Not Required','Not Required',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09','0','1','a122d-1a018-21c16-90ace',NULL,'2021-04-09 13:21:08','2021-04-09 13:21:08','0'),(387,89,0,1,0,'mangal@catpl.co.in','MR',0,'9','7727052691','SADAD','ASDASD','',0,1,NULL,NULL,NULL,NULL,NULL,'Not Required','Not Required','Not Required',1,0,'Not Required','Not Required',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12','0','1','56f6c-83cf7-9aa62-5c10a',NULL,'2021-04-12 12:43:27','2021-04-12 12:43:27','0'),(388,62,0,1,0,'deepak@catpl.co.in','MR',0,'Other','9695357709','DEEPAK','KUMAR','',0,1,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12','0','1','12286-a6db9-bee9a-a5fe5',NULL,'2021-04-12 13:49:54','2021-04-12 13:49:54','0'),(389,62,0,1,0,'deepak@catpl.co.in','MASTER',0,'9','9695357709','RAHUL',' KUMAR','',0,1,NULL,NULL,NULL,NULL,NULL,'Not Required','Not Required','Not Required',2,0,'Not Required','Not Required',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12','0','1','12286-a6db9-bee9a-a5fe5',NULL,'2021-04-12 13:49:54','2021-04-12 13:49:54','0'),(390,62,0,1,0,'deepak@catpl.co.in','MASTER',0,'9','9695357709','VIVEK ','KUMAR','',0,1,NULL,NULL,NULL,NULL,NULL,'Not Required','Not Required','Not Required',2,0,'Not Required','Not Required',NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12','0','1','12286-a6db9-bee9a-a5fe5',NULL,'2021-04-12 13:49:54','2021-04-12 13:49:54','0');
/*!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 AUTO_INCREMENT=72 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 */;
INSERT INTO `tbl_enquiry` VALUES (8,'Pooja Sharma','sharmapooja2101@gmail.com','9205090492','15/05/2017','test','1','2017-06-16 02:19:59'),(9,'Md Sabir','sibo.sarso@gmail.com','8447455883','15/05/2017','test','1','2017-06-16 02:23:51'),(10,'Pooja Sharma','sharmapooja2101@gmail.com','9205090492','15/05/2017','gvxc','1','2017-06-16 02:25:27'),(11,'kj','kj','12','12-02-2017','as','1','2017-06-26 03:40:03'),(12,'kj','kawaljeet@catpl.co.in','3454353454','12-02-2017','zdsdf adfsda','1','2017-06-26 03:40:34'),(13,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','test','1','2017-06-26 04:21:25'),(14,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','trest','1','2017-06-26 04:22:49'),(15,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','Test','1','2017-06-26 04:31:20'),(16,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','test','1','2017-06-26 05:04:05'),(17,'prashant','prashant.gupta11687@gmail.com','9015562063','11/06/2017','test','1','2017-06-26 05:07:57'),(18,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','test','1','2017-06-26 05:11:43'),(19,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','Test','1','2017-06-26 05:25:00'),(20,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','test','1','2017-06-26 05:26:05'),(21,'prashant','prashant.gupta11687@gmail.com','9015562063','11/06/2017','test','1','2017-06-26 05:28:52'),(22,'prashant','prashant@catpl.co.in','9015562063','11/06/2017','test','1','2017-06-26 05:31:59'),(23,'Kawaljeet','kawaljeet@catpl.co.in','8968955343','11/06/2017','test','1','2017-06-26 05:34:05'),(24,'Rehan Khan','rehan@gmail.com','9234658774','15/05/2017','test','1','2017-07-06 12:18:35'),(25,'Pooja Sharma','sibo.sarso@gmail.com','9205090492','','test','1','2017-07-06 12:58:05'),(26,'Pooja Sharma','sibo.sarso@gmail.com','9205090492','','ggg','1','2017-07-06 12:58:26'),(27,'Pooja Sharma','tanuaman0111@gmail.com','9205090492','','test','1','2017-07-06 12:59:17'),(28,'Pooja Sharma','sharmapooja2101@gmail.com','9205090492','','xggfd','1','2017-07-06 01:00:41'),(29,'Pooja Sharma','tanuaman0111@gmail.com','9205090492','','gdfgdf','1','2017-07-06 03:05:58'),(30,'Md Sabir','sibo.sarso@gmail.com','8447455883','','test\r\n','1','2017-07-06 03:06:42'),(31,'sabir','sabir@gmail.com','902893432423432','','sdfsdfsdfsd','1','2017-07-06 03:07:31'),(32,'sabir ahmad','sabir45@gmail.com','1235678909','','test','1','2017-07-06 03:09:06'),(33,'Md Sabir','sibo.sarso@gmail.com','8447455883','','afa','1','2017-07-06 03:36:15'),(34,'Md Sabir','sibo.sarso@gmail.com','8447455883','','hfghfg','1','2017-07-06 05:41:27'),(35,'prashant kumar g','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-06 05:41:36'),(36,'Md Sabir','sibo.sarso@gmail.com','8447455883','','rtytr','1','2017-07-06 05:43:56'),(37,'Md Sabir','sibo.sarso@gmail.com','8447455883','','ffg','1','2017-07-06 05:46:22'),(38,'Pooja Sharma','sharmapooja2101@gmail.com','9205090492','','dgdf','1','2017-07-07 11:47:34'),(39,'prashant','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 05:25:41'),(40,'Rishik','rishi.gupta@gmail.com','9016674565','','test','1','2017-07-07 05:27:15'),(41,'prashant','prashant.gupta11687@gmail.com','9015562063','','sdfsdfsd','1','2017-07-07 05:48:18'),(42,'prashant','prashant@catpl.co.in','9015562063','','sdsdas','1','2017-07-07 05:49:37'),(43,'prashant','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 05:58:44'),(44,'prashant','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 06:14:08'),(45,'prashant kumar g','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 06:15:20'),(46,'prashant','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 06:25:44'),(47,'rishik gupta','rishi.singh@idp.com','8968955341','','test','1','2017-07-07 06:26:45'),(48,'prashant','prashant.gupta11687@gmail.com','9015562063','','test','1','2017-07-07 06:51:17'),(49,'prashant','prashant@catpl.co.in','9015562063','','test by prashant','1','2017-07-10 05:15:11'),(50,'sdf','sdfds@dfgsd.ff','4444444554','','test stest','1','2017-07-13 11:47:02'),(51,' death benefit i','ranvir@catpl.co.in','4444444444','','test','1','2017-07-13 12:15:10'),(52,' death benefit i','ranvir@catpl.co.in','4444444444','','test','1','2017-07-13 12:15:10'),(53,'ranvirs singh','ranvir@catpl.co.in','8888888888','','jhkk','1','2017-07-13 09:37:33'),(54,'ranvirs singh','ranvir@catpl.co.in','8888888888','','jhkk','1','2017-07-13 09:38:45'),(55,'ranvirs singh','ranvir@catpl.co.in','8888888888','','test','1','2017-07-13 12:15:49'),(56,'ranvirs singh','ranvir@catpl.co.in','8888888888','','test','1','2017-07-13 12:21:32'),(57,'ranvirs singh','ranvir@catpl.co.in','8888888888','','d','1','2017-07-13 12:22:49'),(58,'ranvirs singh','ranvir@catpl.co.in','8888888888','','er','1','2017-07-13 12:23:48'),(59,'ranvirs singh','ranvir@catpl.co.in','8888888888','','255','1','2017-07-13 12:27:29'),(60,'ranvirs singh','ranvir@catpl.co.in','8888888888','','sdf','1','2017-07-13 12:28:14'),(61,'ranvirs singh','ranvir@catpl.co.in','8888888888','','tet','1','2017-07-13 12:30:37'),(62,'ranvirs singh','ranvir@catpl.co.in','8888888888','','tet','1','2017-07-13 12:34:00'),(63,'v','fgfg@fghgfhgf.ff','5666666666','','yryr','1','2017-07-13 12:34:28'),(64,'death benefit in','ranvir@catpl.co.in','4444444444','','tete','1','2017-07-13 12:35:12'),(65,'ranvirs singh','ranvir@catpl.co.in','8888888888','','2222222222222','1','2017-07-13 12:37:24'),(66,'ranvirs singh','ranvir@catpl.co.in','8888888888','','ttet','1','2017-07-13 12:59:15'),(67,'ranvir singh','ranvir@catpl.co.in','9999999999','','test','1','2017-07-19 11:28:50'),(68,'ranvir 34','test@gamil.com','3333333333','','test','1','2017-07-19 11:39:49'),(69,'dfgfd','dfgfd@sdfs.fgf','4545454545','','dfg','1','2017-07-19 11:45:09'),(70,'te','tstes@sdf.ff','5555555555','','5dfgfdg','1','2017-07-19 11:52:05'),(71,'ranvir 34','ranvir@catpl.co.in','4444444444','','test','1','2017-07-19 11:54:12');
/*!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 AUTO_INCREMENT=12 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 */;
INSERT INTO `tbl_feedback` VALUES (4,5293,618,0,1,'Pranati Dash','na@na.com','+91','8888888888','',0,'Jan',5,'Love the team','It was a great feeling in Maldives. Special Thanks to Aastha, Nupur etc, P.S. the list is long🙏. You ppl gained our trust🤝. Can\'t wait to plan my next trip with I need trip. ❤️','feedback_0_1616136153.jpg','0','0','1'),(5,5293,510,0,1,'muskan gupta','muskancatpl@gmail.com','+91','9854125698','',0,'Jun',4,'safe trip','good','','0','0','1'),(8,5293,633,0,3,'MONAMI ROY','rahulsharmaiihm@gmail.com','+91','9582164929','',0,'Mar',5,'MALDIVES TRIP FEEDBACK','Service was excellent and very friendly staff. I had very good experience during my Maldives tour. No problems, no excuses, great holiday spent. Trust them they will deliver.Astha was very helpful.Excellent service provided by Raminder.She is very sincere in her work.She was prompt in keeping us informed on each of the steps and followed up regularly .Our experience was very smooth even during this corona period and we had a memorable trip.','','1','1','0'),(9,5293,634,0,1,'HAPPY BHALLA','happybhalla20@gmail.com','+91','8929404047','',0,'Mar',5,'DUBAI TRIP FEEDBACK','It was a wonderful experience with I NEED TRIP. I booked DUBAI trip with i need trip , they helped me out each and every time whenever i need any sort of help. These guys are really amazing. I really thankful for the team. Initially it was very hard for me to have trust on company but honestly this company really deserve trust.You all can blindly book the trips with I NEED TRIP without having doubt. Team Please keep on work like this you will be on new height soon. All the best and have fruitful journey. Thanks Mr. Pankaj to guide and help me to planning the itinerary.','','1','1','0'),(10,5293,639,0,1,'ANUJ SAO','sao.anuj@gmail.com','+91','7506939678','',0,'Feb',5,'MALDIVES TRIP FEEDBACK','Perfect and Hassle Free Trip. Everything was easy thanks to Taran and Raminder. Would definitely use \"I Need Trip\" when I need (the next ;) ) trip.','','1','1','0'),(11,5293,644,0,1,'Sparsh Kapoor','na@na.na','+91','8888888888','',0,'Jan',5,'Kudos to team','It was my dubai trip with 2 families in total. Had a really great experience with ineedtrip. They made us a whatsapp group like even at night 2.30 am. We had to do our webcheckin and we were unable to do. The team (nidhi) did us the webcheckin for us at that tym so. These people are committed to their customers and really care for us. They are just a message away on whatsapp group. As one of our bags got left in the vehicle so we were worried. Just messaged on the group and the driver was back within few more mins. So had a hassle free trip as we people were full of mistakes and lazyness. So they covered us fully just on a simple message. The replies were fast and life saving. Thankyou ineedtrip for a wondefful journey so far. \r\nAlso not to forget the genuiness of the owner (paaji). Such a great person with very genuine attitude and lovely vibes ..\r\nKeep spreading the wonderful smiles and happiness\r\nThankyou again for the memorable experience all together','','1','1','0');
/*!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 AUTO_INCREMENT=5 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 */;
INSERT INTO `tbl_festival` VALUES (2,'DUSHRAA','dushraa','<p>asdfasdf</p>\r\n','sdfg','sdfg','asdfsdfg','_1555914543.jpg','Activate','2019-04-22 11:59:03','2019-05-04 12:20:48','','',''),(3,'HOLITEST','holitest','<p>testing</p>\r\n','holimetaa','holi Keyword','asdf','3_1555918552.jpg','Activate','2019-04-22 12:06:36','2019-04-23 18:53:51','','','[\"104\",\"103\"]'),(4,'DEWALI','dewali','<p>dfhg</p>\r\n','dhg','dfhg','dfhg','4_1556945415.jpg','Activate','2019-04-24 17:43:19','2019-05-04 10:20:36','','','');
/*!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=31 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 (1,'Delhi','',0,1,1,'1'),(2,'Delhi','',0,1,1,'1'),(3,'mumbai','',0,1,1,'1'),(4,'mumbai','',0,1,1,'0'),(5,'delhi edit','',1,1,1,'1'),(6,'delhi edited','',2,1,1,'1'),(7,'kolkata edit','',3,1,1,'1'),(8,'delhi 123','',4,1,1,'1'),(9,'fdsgf','',6,1,1,'1'),(10,'wer','',1,1,1,'1'),(11,'wer','',-2,1,1,'1'),(12,'Tiaret(TID)','',1,1,1,'1'),(13,'Adelaide(ADL)','',1,1,1,'1'),(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'),(16,'Delhi(DEL)','{',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'),(20,'Delhi(DEL)','{',1,1,1,'1'),(21,'Mumbai(BOM)','{',2,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\",\"label\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"value\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\"}',1,1,0,'1'),(29,'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)\"}',2,1,0,'1'),(30,'Kolkata(CCU)','{\"AirportCode\":\"CCU\",\"CityID\":14323,\"ContSysId\":101,\"ICAO\":\"CCU\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Kolkata\",\"label\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"value\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU)\"}',3,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` varchar(255) NOT NULL,
`AirlineSysId` int NOT NULL,
`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',
`IsCancellationProtection` enum('0','1') NOT NULL DEFAULT '0',
`CancellationProtectionPrice` float NOT NULL DEFAULT '0',
`API_Response` longtext,
`API_Response_Ticket` longtext,
`FlightQueryids` text,
`paymentStatus` smallint 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,
`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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=414 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 */;
INSERT INTO `tbl_flight_booking` VALUES (296,0,49,5293,0,0,NULL,'2021-05-12',NULL,NULL,'6E-5379','IndiGo','1',1,'5-9255944805_0DELBOM6E5379_26770621706843463',267,'05:30:00','07:40:00',0,'R',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',2,1,5805.39990234375,'5-9255944805_0DELBOM6E5379_26770621706843463',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4424,1381.4,0,914,0,30,5805.39990234375,169.49,0,169.49,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-02-26 11:41:19','2021-02-26 11:41:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(297,0,227,5293,0,0,NULL,'2021-03-21',NULL,NULL,'AI-1929','Air India','',1,'10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',0,'09:00:00','11:15:00',0,'T',0,'3h 45m',7701,8219,'DEL','DXB','Non-stop',1,1,20327,'10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/AI.gif','INR',16000,4326.4,0,3081,0,30,20327,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-02-26 11:46:44','2021-02-26 11:46:44','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(298,297,227,5293,0,0,NULL,'2021-03-21',NULL,NULL,'AI-916','Air India','',1,'10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',0,'22:30:00','03:20:00',0,'T',0,'3h 20m',8219,7701,'DXB','DEL','Non-stop',1,1,20327,'10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/AI.gif','INR',16000,4326.4,0,3081,0,30,20327,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-02-26 11:46:44','2021-02-26 11:46:44','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(299,0,88,5293,0,0,NULL,'2021-04-27',NULL,NULL,'6E-665','IndiGo','1',1,'5-3884445213_35DELBOM6E665_27274788804552042',267,'21:55:00','00:05:00',0,'M',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,3146.699951171875,'5-3884445213_35DELBOM6E665_27274788804552042',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2445,701.7,0,457,0,15,3146.699951171875,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-04 07:44:34','2021-03-04 07:44:34','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(300,0,62,5293,0,0,'TESTPNR','2021-03-18','TJS107900057504',NULL,'H1-9442','Hahn Air','',1,'10-4351799974_12DELBOMH19442_27699110326595530',251,'08:20:00','10:25:00',0,'K',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',2,1,36015.3984375,'10-4351799974_12DELBOMH19442_27699110326595530',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/H1.gif','INR',21700,14315.4,4692,716,0,30,36015.3984375,169.49,0,169.49,0,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS107900057504\",\"FlightNumber\":\"H1-9442\",\"AirlineName\":\"Hahn Air\",\"AirlineCode\":\"H1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"AirlineSysId\":\"251\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-03-18T08:20\",\"LocalFromTime\":\"2021-03-18 08:20\",\"FromUTCTime\":\"2021-03-18T08:20\",\"LocalToTime\":\"2021-03-18 10:25\",\"ToUTCTime\":\"2021-03-18T10:25\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":36015.4,\"PublishedFareTxt\":\"36,015\",\"ApiResultIndex\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21700,\"Tax\":14315.4,\"YQTax\":4692,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1672,\"CarrierMiscFee\":7000,\"MUFee\":200,\"intPublishedFare\":36015.4,\"PublishedFare\":36015.4,\"OfferedFare\":35815.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14315.4,\"BaseFareCal\":35845.91,\"BaseFare\":21700,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4692,\"AGST\":1672,\"MFT\":5.4,\"OT\":716,\"MU\":200,\"YR\":7000,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":36015.4,\"CostToCustomer\":36015.4,\"BaseFareCal\":35845.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":35845.91,\"intOfferedFare\":35815.4,\"intPublishFare\":36015.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":35815.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"433\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T10:25\",\"SegFlightNumber\":\"H1-9442\",\"AirlineCode\":\"H1\",\"AirlineName\":\"Hahn Air\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107900057504\",\"FlightNumber\":\"H1-9442\",\"AirlineName\":\"Hahn Air\",\"AirlineCode\":\"H1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"AirlineSysId\":\"251\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-03-18T08:20\",\"LocalFromTime\":\"2021-03-18 08:20\",\"FromUTCTime\":\"2021-03-18T08:20\",\"LocalToTime\":\"2021-03-18 10:25\",\"ToUTCTime\":\"2021-03-18T10:25\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":36015.4,\"ApiResultIndex\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21700,\"Tax\":14315.4,\"YQTax\":4692,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1672,\"CarrierMiscFee\":7000,\"MUFee\":200,\"intPublishedFare\":36015.4,\"PublishedFare\":36015.4,\"OfferedFare\":35815.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14315.4,\"BaseFareCal\":35845.91,\"BaseFare\":21700,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4692,\"AGST\":1672,\"MFT\":5.4,\"OT\":716,\"MU\":200,\"YR\":7000,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"433\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T10:25\",\"SegFlightNumber\":\"H1-9442\",\"AirlineCode\":\"H1\",\"AirlineName\":\"Hahn Air\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"localFromDateTime\":\"2021-03-18 08:20\",\"localToDateTime\":\"2021-03-18 10:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS107900057504\",\"partnerId\":\"0\",\"amount\":35815.4,\"markup\":200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-09T11:08:48.395\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25422\",\"fD\":{\"aI\":{\"code\":\"H1\",\"name\":\"Hahn Air\",\"isLcc\":false},\"fN\":\"9442\",\"eT\":\"737\"},\"oB\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"stops\":0,\"duration\":125,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-18T08:20\",\"at\":\"2021-03-18T10:25\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"ssrMealInfos\":{\"DEL-BOM\":{\"code\":\"VJML\",\"amount\":0,\"desc\":\"Jain Veg Meal\"}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1},{\"ssrMealInfos\":{\"DEL-BOM\":{\"code\":\"VGML\",\"amount\":0,\"desc\":\"Vegan Veg Meal\"}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Vivek\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":2}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":35815.4,\"TAF\":14315.4,\"BF\":21700,\"IGST\":5.4,\"SSRP\":0,\"TF\":36015.4},\"afC\":{\"TAF\":{\"MF\":30,\"YQ\":4692,\"AGST\":1672,\"OT\":716,\"YR\":7000,\"MFT\":5.4,\"MU\":200},\"SSRP\":{\"OT\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":400480.84}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"218894\",\"TPSysId\":\"218895\",\"VersionId\":[\"25920\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7390\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000070241','','',NULL,NULL,'0','2021-03-09 05:37:39','2021-03-09 05:37:39','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(301,0,32,5293,0,0,NULL,'2021-04-22',NULL,NULL,'6E-5379','IndiGo','1',1,'5-6998295847_26DELBOM6E5379_27722677486581805',267,'05:30:00','07:40:00',0,'J',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',3,1,10622.099609375,'5-6998295847_26DELBOM6E5379_27722677486581805',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',8460,2162.1,0,1371,0,45,10622.099609375,254.24,0,254.24,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000070588','','',NULL,NULL,'0','2021-03-09 12:09:04','2021-03-09 12:09:04','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(302,0,89,5293,0,0,NULL,'2021-03-11',NULL,NULL,'6E-2173','IndiGo','1',1,'5-7650331241_3DELBOM6E2173_27889207689940875',267,'18:20:00','20:25:00',0,'M',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',1,1,5724.7001953125,'5-7650331241_3DELBOM6E2173_27889207689940875',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,824.7,0,457,0,15,5724.7001953125,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000071624','','',NULL,NULL,'0','2021-03-11 10:24:19','2021-03-11 10:24:19','18AABCU9603R1ZM','hellogtx','mangal@catpl.co.in','9874521258','fgvbfgh','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(303,0,90,5293,0,0,'TESTPNR-TESTPNR','2021-04-23','TJS109000058273',NULL,'6E-5006','IndiGo','1',1,'5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006',267,'20:00:00','23:55:00',0,'R',235,'3h 55m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4316.7001953125,'5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',3509,807.7,0,507,0,15,4316.7001953125,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS109000058273\",\"FlightNumber\":\"6E-5006\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"23:55\",\"TravelDate\":\"2021-04-23T20:00\",\"LocalFromTime\":\"2021-04-23 20:00\",\"FromUTCTime\":\"2021-04-23T20:00\",\"LocalToTime\":\"2021-04-23 23:55\",\"ToUTCTime\":\"2021-04-23T23:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Fri, 23 Apr\",\"ArrivalDateTxt\":\"Fri, 23 Apr\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"PublishedFareTxt\":\"4,317\",\"ApiResultIndex\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4316.7,\"OfferedFare\":4216.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4231.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4316.7,\"CostToCustomer\":4316.7,\"BaseFareCal\":4231.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":4231.95,\"intOfferedFare\":4216.7,\"intPublishFare\":4316.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4216.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"574\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-04-23T21:35\",\"SegFlightNumber\":\"6E-5006\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-23T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":65,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"119\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-23T23:55\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-04-23T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109000058273\",\"FlightNumber\":\"6E-5006\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"23:55\",\"TravelDate\":\"2021-04-23T20:00\",\"LocalFromTime\":\"2021-04-23 20:00\",\"FromUTCTime\":\"2021-04-23T20:00\",\"LocalToTime\":\"2021-04-23 23:55\",\"ToUTCTime\":\"2021-04-23T23:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Fri, 23 Apr\",\"ArrivalDateTxt\":\"Fri, 23 Apr\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"ApiResultIndex\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4316.7,\"OfferedFare\":4216.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4231.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"574\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-04-23T21:35\",\"SegFlightNumber\":\"6E-5006\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-23T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":65,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"119\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-23T23:55\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-04-23T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"localFromDateTime\":\"2021-04-23 20:00\",\"localToDateTime\":\"2021-04-23 23:55\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS109000058273\",\"partnerId\":\"0\",\"amount\":4216.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"mangal@catpl.co.in\"],\"contacts\":[\"+917727052631\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-11T15:58:25.099\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25617\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5006\",\"eT\":\"321\"},\"stops\":0,\"duration\":95,\"cT\":65,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":3943,\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-23T20:00\",\"at\":\"2021-04-23T21:35\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25618\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6813\",\"eT\":\"320\"},\"stops\":0,\"duration\":75,\"da\":{\"id\":3943,\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-23T22:40\",\"at\":\"2021-04-23T23:55\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"TESTPNR\",\"AMD-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"mangal\",\"lN\":\"katiyar\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":4216.7,\"TAF\":807.7,\"BF\":3509,\"IGST\":2.7,\"TF\":4316.7},\"afC\":{\"TAF\":{\"MF\":15,\"AGST\":183,\"OT\":507,\"MFT\":2.7,\"MU\":100}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":288297.26}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"219948\",\"TPSysId\":\"219949\",\"VersionId\":[\"26254\"],\"CustomerSysId\":\"105309\",\"TrxId\":\"7465\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000071625','','',NULL,NULL,'0','2021-03-11 10:27:56','2021-03-11 10:27:56','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(304,0,230,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-138','IndiGo','1',1,'5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976',267,'10:30:00','17:30:00',0,'M',420,'7h 0m',10685,16028,'GOP','LKO','1 Stop(s)',1,1,7330.7001953125,'5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',6477,853.7,0,407,0,15,7330.7001953125,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000072165','','',NULL,NULL,'0','2021-03-12 10:57:58','2021-03-12 10:57:58','29AAFCA7488L1ZW','catpl','deepak@catpl.co.in','9695357709','Noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(305,0,91,5293,0,0,'TESTPNR-TESTPNR','2021-03-26','TJS108400058483',NULL,'6E-7306','IndiGo','1',1,'5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609',267,'10:40:00','21:55:00',0,'R',675,'11h 15m',10685,16028,'GOP','LKO','1 Stop(s)',1,1,9927.7001953125,'5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',8950,977.7,0,407,0,15,9927.7001953125,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS108400058483\",\"FlightNumber\":\"6E-7306\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:55\",\"TravelDate\":\"2021-03-26T10:40\",\"LocalFromTime\":\"2021-03-26 10:40\",\"FromUTCTime\":\"2021-03-26T10:40\",\"LocalToTime\":\"2021-03-26 21:55\",\"ToUTCTime\":\"2021-03-26T21:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":455,\"LAYOVERDuration\":\"7h 35m\",\"FlyingMinutes\":675,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"11h 15m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9927.7,\"PublishedFareTxt\":\"9,928\",\"ApiResultIndex\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8950,\"Tax\":977.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":453,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":9927.7,\"PublishedFare\":9927.7,\"OfferedFare\":9827.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":977.7,\"BaseFareCal\":9842.95,\"BaseFare\":8950,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":453,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":9927.7,\"CostToCustomer\":9927.7,\"BaseFareCal\":9842.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":9842.95,\"intOfferedFare\":9827.7,\"intPublishFare\":9927.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9827.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"915\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-26T12:30\",\"SegFlightNumber\":\"6E-7306\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":455,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"7h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"364\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T21:55\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-26T20:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:05\",\"strArrivalDtTime\":\"21:55\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108400058483\",\"FlightNumber\":\"6E-7306\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:55\",\"TravelDate\":\"2021-03-26T10:40\",\"LocalFromTime\":\"2021-03-26 10:40\",\"FromUTCTime\":\"2021-03-26T10:40\",\"LocalToTime\":\"2021-03-26 21:55\",\"ToUTCTime\":\"2021-03-26T21:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":455,\"LAYOVERDuration\":\"7h 35m\",\"FlyingMinutes\":675,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"11h 15m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9927.7,\"ApiResultIndex\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8950,\"Tax\":977.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":453,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":9927.7,\"PublishedFare\":9927.7,\"OfferedFare\":9827.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":977.7,\"BaseFareCal\":9842.95,\"BaseFare\":8950,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":453,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"915\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-26T12:30\",\"SegFlightNumber\":\"6E-7306\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":455,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"7h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"364\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T21:55\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-26T20:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:05\",\"strArrivalDtTime\":\"21:55\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"localFromDateTime\":\"2021-03-26 10:40\",\"localToDateTime\":\"2021-03-26 21:55\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS108400058483\",\"partnerId\":\"0\",\"amount\":9827.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+9196953657709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-12T16:34:05.194\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25674\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"7306\",\"eT\":\"ATR\"},\"stops\":0,\"duration\":110,\"cT\":455,\"da\":{\"id\":5493,\"code\":\"GOP\",\"name\":\"Gorakhpur Arpt\",\"cityCode\":\"GOP\",\"city\":\"Gorakhpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6133,\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-26T10:40\",\"at\":\"2021-03-26T12:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25675\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"856\",\"eT\":\"320\"},\"stops\":0,\"duration\":110,\"da\":{\"id\":6133,\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6463,\"code\":\"LKO\",\"name\":\"Amausi Arpt\",\"cityCode\":\"LKO\",\"city\":\"Lucknow\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-26T20:05\",\"at\":\"2021-03-26T21:55\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"GOP-CCU\":\"TESTPNR\",\"CCU-LKO\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Gupta\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":9827.7,\"TAF\":977.7,\"BF\":8950,\"IGST\":2.7,\"TF\":9927.7},\"afC\":{\"TAF\":{\"MF\":15,\"AGST\":453,\"OT\":407,\"MFT\":2.7,\"MU\":100}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":259759.76}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220281\",\"TPSysId\":\"220282\",\"VersionId\":[\"26391\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7497\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000072174','','',NULL,NULL,'0','2021-03-12 11:03:37','2021-03-12 11:03:37','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(306,0,93,5642,220365,220366,'TESTPNR','2021-03-29','DMC101900058577','TJS101900058577','6E-5012','IndiGo','1',1,'abfb1-42396-789f8-fea42',267,'08:00:00','10:10:00',0,'T',130,'02h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,3243.699951171875,'5-6908606716_10DELBOM6E5012_27986282563721936',1,1,0,'http://partner.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',2369,874.7,0,457,0,15,3243.699951171875,0,0,150,27,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS101900058577\",\"bookingId_TJ\":\"TJS101900058577\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"abfb1-42396-789f8-fea42\",\"apiTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-29T08:00\",\"LocalFromTime\":\"2021-03-29 08:00\",\"FromUTCTime\":\"2021-03-29T08:00\",\"LocalToTime\":\"2021-03-29 10:10\",\"ToUTCTime\":\"2021-03-29T10:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 29 Mar\",\"ArrivalDateTxt\":\"Mon, 29 Mar\",\"FlightDuration\":\"02h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":128,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,244\",\"ApiResultIndex\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"PublishedFareAgent\":3243.7,\"OfferedFareAgent\":3243.7,\"OfferedFare\":2966.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"SeatAvailable\":128,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"TotalBaseFare\":3066.7,\"BaseFareCal\":2993.7,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.2542372881356,\"PublishFare\":3243.7,\"CostToCustomer\":3243.7,\"BaseFareCal\":2993.7,\"intCommisionEarnedForAgency\":250,\"CostToCompany\":2993.7,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7}},\"Segments\":[{\"segmentid\":\"044\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-29T10:10\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-29T08:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":128,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"isML\":false,\"isHB\":false,\"rT\":\"REFUNDABLE\",\"cB\":{\"ADT\":\"15 Kg (01 Piece only)\",\"CNN\":\"15 Kg (01 Piece only)\"},\"hB\":{\"ADT\":\"01 Small Handbag under the seat\",\"CNN\":\"01 Small Handbag under the seat\",\"INF\":\"01 Small Handbag under the seat\"},\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACFT\":175,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":[]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',1,'0',0,'{\"bookingId\":\"DMCS101900058577\",\"bookingId_TJ\":\"TJS101900058577\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"abfb1-42396-789f8-fea42\",\"apiTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-29T08:00\",\"LocalFromTime\":\"2021-03-29 08:00\",\"FromUTCTime\":\"2021-03-29T08:00\",\"LocalToTime\":\"2021-03-29 10:10\",\"ToUTCTime\":\"2021-03-29T10:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 29 Mar\",\"ArrivalDateTxt\":\"Mon, 29 Mar\",\"FlightDuration\":\"02h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":128,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,244\",\"ApiResultIndex\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"PublishedFareAgent\":3243.7,\"OfferedFareAgent\":3243.7,\"OfferedFare\":2966.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"SeatAvailable\":128,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"TotalBaseFare\":3066.7,\"BaseFareCal\":2993.7,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.2542372881356,\"PublishFare\":3243.7,\"CostToCustomer\":3243.7,\"BaseFareCal\":2993.7,\"intCommisionEarnedForAgency\":250,\"CostToCompany\":2993.7,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7}},\"Segments\":[{\"segmentid\":\"044\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-29T10:10\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-29T08:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":128,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"isML\":false,\"isHB\":false,\"rT\":\"REFUNDABLE\",\"cB\":{\"ADT\":\"15 Kg (01 Piece only)\",\"CNN\":\"15 Kg (01 Piece only)\"},\"hB\":{\"ADT\":\"01 Small Handbag under the seat\",\"CNN\":\"01 Small Handbag under the seat\",\"INF\":\"01 Small Handbag under the seat\"},\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACFT\":175,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":[]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}','{\"order\":{\"bookingId\":\"TJS101900058577\",\"partnerId\":\"0\",\"amount\":2966.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"sibo.sarso@gmail.com\"],\"contacts\":[\"918447455883\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-12T18:58:26.558\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25720\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5012\",\"eT\":\"321\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-29T08:00\",\"at\":\"2021-03-29T10:10\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"md\",\"lN\":\"sabir\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":2966.7,\"TAF\":697.7,\"BF\":2369,\"IGST\":2.7,\"TF\":3066.7},\"afC\":{\"TAF\":{\"MF\":15,\"AGST\":123,\"OT\":457,\"MFT\":2.7,\"MU\":100}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":236430.18}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220365\",\"TPSysId\":\"220366\",\"VersionId\":[\"26439\"],\"CustomerSysId\":\"105490\",\"TrxId\":\"7500\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000072275','','','72287C43B29A4FE99121A4C25A3436E9','C375E600E9F44BD8890C02800925A982','0','2021-03-12 13:26:08','2021-03-12 13:26:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'md sabir','md sabir',NULL,NULL,NULL,NULL),(307,0,62,5293,0,0,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2021-03-18','TJS114700058929',NULL,'EY-211','Etihad Airways','',1,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',0,'04:15:00','09:30:00',0,'E',0,'6h 45m',7701,8219,'DEL','XNB','1 Stop(s)',3,1,34747.19921875,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/EY.gif','INR',11055,20860.2,11638,6184,0,90,34747.19921875,1708.47,0,1200,216,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS114700058929\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2021-03-18T04:15\",\"LocalFromTime\":\"2021-03-18 04:15\",\"FromUTCTime\":\"2021-03-18T04:15\",\"LocalToTime\":\"2021-03-18 09:30\",\"ToUTCTime\":\"2021-03-18T09:30\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":45,\"LAYOVERDuration\":\"0h 45m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"5h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11055,\"Tax\":20860.2,\"YQTax\":11638,\"OtherCharges\":6184,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1195,\"CarrierMiscFee\":1137,\"MUFee\":600,\"intPublishedFare\":31915.2,\"PublishedFare\":34747.2,\"OfferedFare\":406.20000000000005,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":523.52,\"apiMarkup\":508.48,\"IntCommission\":0,\"apiTaxOnMarkup\":91.52,\"FixedMarkUp\":2400,\"GSTOnMarkUp\":432,\"CommEarned\":2908.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":3725.3999999999996,\"BaseFareCal\":4414.9,\"BaseFare\":715,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":2910,\"AGST\":201,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[{\"segmentid\":\"283\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-18T06:45\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":45,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"929\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-03-18T09:30\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-18T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114700058929\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2021-03-18T04:15\",\"LocalFromTime\":\"2021-03-18 04:15\",\"FromUTCTime\":\"2021-03-18T04:15\",\"LocalToTime\":\"2021-03-18 09:30\",\"ToUTCTime\":\"2021-03-18T09:30\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":45,\"LAYOVERDuration\":\"0h 45m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"5h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":34747.2,\"ApiResultIndex\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11055,\"Tax\":20860.2,\"YQTax\":11638,\"OtherCharges\":6184,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1195,\"CarrierMiscFee\":1137,\"MUFee\":600,\"intPublishedFare\":31915.2,\"PublishedFare\":34747.2,\"OfferedFare\":406.20000000000005,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":523.52,\"apiMarkup\":508.48,\"IntCommission\":0,\"apiTaxOnMarkup\":91.52,\"FixedMarkUp\":2400,\"GSTOnMarkUp\":432,\"CommEarned\":2908.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":3725.3999999999996,\"BaseFareCal\":4414.9,\"BaseFare\":715,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":2910,\"AGST\":201,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-18T06:45\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":45,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"929\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-03-18T09:30\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-18T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],[{\"segmentid\":\"059\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-31T20:20\",\"SegFlightNumber\":\"EY-5423\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-03-31T19:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":105,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:00\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:15\",\"SegFlightNumber\":\"EY-218\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-31T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"03:15\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"localFromDateTime\":\"2021-03-18 04:15\",\"localToDateTime\":\"2021-03-18 09:30\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS114700058929\",\"partnerId\":\"0\",\"amount\":31315.2,\"markup\":600,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-15T13:17:30.451\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25790\",\"fD\":{\"aI\":{\"code\":\"EY\",\"name\":\"Etihad Airways\",\"isLcc\":false},\"fN\":\"211\",\"eT\":\"781\"},\"stops\":0,\"duration\":240,\"cT\":45,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":3918,\"code\":\"AUH\",\"name\":\"Dhabi Intl Arpt\",\"cityCode\":\"AUH\",\"city\":\"Abu Dhabi\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-18T04:15\",\"at\":\"2021-03-18T06:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25791\",\"fD\":{\"aI\":{\"code\":\"EY\",\"name\":\"Etihad Airways\",\"isLcc\":false},\"fN\":\"5418\",\"eT\":\"BUS\"},\"stops\":0,\"duration\":120,\"da\":{\"id\":3918,\"code\":\"AUH\",\"name\":\"Dhabi Intl Arpt\",\"cityCode\":\"AUH\",\"city\":\"Abu Dhabi\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5116,\"code\":\"XNB\",\"name\":\"Dubai Chelsea Tower Bus Station\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-18T07:30\",\"at\":\"2021-03-18T09:30\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25792\",\"fD\":{\"aI\":{\"code\":\"EY\",\"name\":\"Etihad Airways\",\"isLcc\":false},\"fN\":\"5423\",\"eT\":\"BUS\"},\"stops\":0,\"duration\":80,\"cT\":105,\"da\":{\"id\":5116,\"code\":\"XNB\",\"name\":\"Dubai Chelsea Tower Bus Station\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":3918,\"code\":\"AUH\",\"name\":\"Dhabi Intl Arpt\",\"cityCode\":\"AUH\",\"city\":\"Abu Dhabi\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-31T19:00\",\"at\":\"2021-03-31T20:20\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25793\",\"fD\":{\"aI\":{\"code\":\"EY\",\"name\":\"Etihad Airways\",\"isLcc\":false},\"fN\":\"218\",\"eT\":\"781\"},\"stops\":0,\"duration\":220,\"da\":{\"id\":3918,\"code\":\"AUH\",\"name\":\"Dhabi Intl Arpt\",\"cityCode\":\"AUH\",\"city\":\"Abu Dhabi\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-31T22:05\",\"at\":\"2021-04-01T03:15\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AUH\":\"TESTPNR\",\"AUH-XNB\":\"TESTPNR\",\"XNB-AUH\":\"TESTPNR\",\"AUH-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-AUH\":\"11111111111\",\"AUH-XNB\":\"11111111111\",\"XNB-AUH\":\"11111111111\",\"AUH-DEL\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"A1\",\"lN\":\"K1\",\"dob\":\"1946-03-17\",\"pNum\":\"hfdfe1234\",\"eD\":\"2022-09-22\",\"pNat\":\"IN\",\"pid\":\"2018-03-21\",\"userProfile\":[],\"id\":1},{\"ssrMealInfos\":{\"DEL-AUH\":{\"code\":\"VJML\",\"amount\":0,\"desc\":\"Jain Veg Meal\"}},\"pnrDetails\":{\"DEL-AUH\":\"TESTPNR\",\"AUH-XNB\":\"TESTPNR\",\"XNB-AUH\":\"TESTPNR\",\"AUH-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-AUH\":\"11111111111\",\"AUH-XNB\":\"11111111111\",\"XNB-AUH\":\"11111111111\",\"AUH-DEL\":\"11111111111\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"C1\",\"lN\":\"K1\",\"dob\":\"2011-03-09\",\"pNum\":\"gsdh5285\",\"eD\":\"2023-03-14\",\"pNat\":\"IN\",\"pid\":\"2015-03-18\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-AUH\":\"TESTPNR\",\"AUH-XNB\":\"TESTPNR\",\"XNB-AUH\":\"TESTPNR\",\"AUH-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-AUH\":\"11111111111\",\"AUH-XNB\":\"11111111111\",\"XNB-AUH\":\"11111111111\",\"AUH-DEL\":\"11111111111\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"I1\",\"lN\":\"K1\",\"dob\":\"2020-03-12\",\"pNum\":\"ikdt\",\"eD\":\"2024-03-19\",\"pNat\":\"IN\",\"pid\":\"2021-03-18\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":31915.2,\"BF\":11055,\"SSRP\":0,\"TAF\":20860.2,\"NF\":31315.2,\"IGST\":16.2},\"afC\":{\"SSRP\":{\"OT\":0},\"TAF\":{\"AGST\":1195,\"MFT\":16.2,\"MU\":600,\"YQ\":11638,\"OT\":6184,\"MF\":90,\"YR\":1137}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":205114.98}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220709\",\"TPSysId\":\"220710\",\"VersionId\":[\"26532\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7540\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000072743','','',NULL,NULL,'0','2021-03-15 07:37:34','2021-03-15 07:37:34','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(308,307,62,5293,0,0,NULL,'2021-03-18',NULL,NULL,'EY-5423','Etihad Airways','',1,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',0,'19:00:00','03:15:00',0,'E',0,'6h 45m',8219,7701,'XNB','DEL','1 Stop(s)',3,1,33332,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/EY.gif','INR',11055,20860.2,11638,6184,0,90,33332,1708.47,0,1200,216,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000072743','','',NULL,NULL,'0','2021-03-15 07:37:34','2021-03-15 07:37:34','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(309,0,62,5293,0,0,NULL,'2021-03-24',NULL,NULL,'EY-211','Etihad Airways','',0,'10-1623845962_18DELAUHEY211AUHXNBEY5418_28234834388297727',210,'04:15:00','09:30:00',0,'E',405,'5h 15m',7701,8219,'DEL','XNB','1 Stop(s)',1,1,6330.7001953125,'10-1623845962_18DELAUHEY211AUHXNBEY5418_28234834388297727',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/EY.gif','INR',2610,3484.7,2182,715,0,15,6330.7001953125,284.75,0,84.75,36,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-15 10:30:14','2021-03-15 10:30:14','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(310,0,29,5293,0,0,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2021-04-06','TJS114000059229',NULL,'6E-488','IndiGo','1',1,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',0,'10:25:00','20:55:00',0,'A',0,'12h 0m',0,8219,'BLR','DXB','1 Stop(s)',6,1,81672.3984375,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',56828,19180.4,0,16264,0,180,81672.3984375,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS114000059229\",\"FlightNumber\":\"6E-488\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-06T10:25\",\"LocalFromTime\":\"2021-04-06 10:25\",\"FromUTCTime\":\"2021-04-06T10:25\",\"LocalToTime\":\"2021-04-06 20:55\",\"ToUTCTime\":\"2021-04-06T20:55\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":420,\"LAYOVERDuration\":\"7h 0m\",\"FlyingMinutes\":720,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"10h 30m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":56828,\"Tax\":19180.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1504,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":76008.4,\"PublishedFare\":81672.4,\"OfferedFare\":65212.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"841\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-06T12:20\",\"SegFlightNumber\":\"6E-488\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-06T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":420,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"7h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-06T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-06T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"841\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"841\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-06 12:00\",\"localToDateTime\":\"2021-04-09 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114000059229\",\"FlightNumber\":\"6E-488\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-06T10:25\",\"LocalFromTime\":\"2021-04-06 10:25\",\"FromUTCTime\":\"2021-04-06T10:25\",\"LocalToTime\":\"2021-04-06 20:55\",\"ToUTCTime\":\"2021-04-06T20:55\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":420,\"LAYOVERDuration\":\"7h 0m\",\"FlyingMinutes\":720,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"10h 30m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":81672.4,\"ApiResultIndex\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":56828,\"Tax\":19180.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1504,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":76008.4,\"PublishedFare\":81672.4,\"OfferedFare\":65212.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"841\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-06T12:20\",\"SegFlightNumber\":\"6E-488\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-06T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":420,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"7h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-06T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-06T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"027\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-10T02:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-04-09T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":195,\"GroundTime\":825,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"02:45\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"377\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-04-10T18:15\",\"SegFlightNumber\":\"6E-904\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-10T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"localFromDateTime\":\"2021-04-06 10:25\",\"localToDateTime\":\"2021-04-06 20:55\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS114000059229\",\"partnerId\":\"0\",\"amount\":74808.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"sudipta@catpl.co.in\"],\"contacts\":[\"+919818999760\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-16T15:19:52.194\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25887\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"488\",\"eT\":\"320\"},\"stops\":0,\"duration\":115,\"cT\":420,\"da\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-06T10:25\",\"at\":\"2021-04-06T12:20\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25888\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":185,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-06T19:20\",\"at\":\"2021-04-06T20:55\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25889\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"62\",\"eT\":\"320\"},\"stops\":0,\"duration\":195,\"cT\":825,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-09T22:00\",\"at\":\"2021-04-10T02:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25890\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"904\",\"eT\":\"321\"},\"stops\":0,\"duration\":105,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-10T16:30\",\"at\":\"2021-04-10T18:15\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Sudipta\",\"lN\":\"Banerjee\",\"dob\":\"1960-03-10\",\"pNum\":\"kjioplkio\",\"eD\":\"2024-03-21\",\"pNat\":\"IN\",\"pid\":\"2001-03-08\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"Ranu\",\"lN\":\"Banerjee\",\"dob\":\"1960-03-10\",\"pNum\":\"kjhjkhkjhkjhkj\",\"eD\":\"2022-03-18\",\"pNat\":\"IN\",\"pid\":\"2002-03-01\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Parth\",\"lN\":\"Banerjee\",\"dob\":\"2014-03-07\",\"pNum\":\"jhkjhjkhkjhkjhkj\",\"eD\":\"2023-03-30\",\"pNat\":\"IN\",\"pid\":\"2002-03-15\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"Kritika\",\"lN\":\"Bhattacharaya\",\"dob\":\"2013-03-08\",\"pNum\":\"olkiolki\",\"eD\":\"2027-03-11\",\"pNat\":\"IN\",\"pid\":\"2015-03-06\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"Kaira\",\"lN\":\"Thakur\",\"dob\":\"2020-03-12\",\"pNum\":\"uuiuiuiiui\",\"eD\":\"2028-03-24\",\"pNat\":\"IN\",\"pid\":\"2011-03-04\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"BLR-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-BLR\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"Dhruv\",\"lN\":\"Banerjee\",\"dob\":\"2020-03-19\",\"pNum\":\"qwertyuio\",\"eD\":\"2023-03-30\",\"pNat\":\"IN\",\"pid\":\"2005-03-17\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":76008.4,\"BF\":56828,\"TAF\":19180.4,\"NF\":74808.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":1504,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":16264,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":122930.19}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221165\",\"TPSysId\":\"221166\",\"VersionId\":[\"26657\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7585\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073366','','',NULL,NULL,'0','2021-03-16 09:48:00','2021-03-16 09:48:00','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(311,310,29,5293,0,0,NULL,'2021-04-06',NULL,NULL,'6E-62','IndiGo','1',1,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',0,'22:00:00','18:15:00',0,'A',0,'18h 45m',8219,0,'DXB','BLR','1 Stop(s)',6,1,78841,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',56828,19180.4,0,16264,0,180,78841,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073366','','',NULL,NULL,'0','2021-03-16 09:48:00','2021-03-16 09:48:00','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(312,0,30,5293,0,0,'TESTPNR','2021-03-24','TJS107300059280',NULL,'6E-2077','IndiGo','1',1,'5-0353392758_11DELBOM6E2077_28328102504599478',267,'22:30:00','00:50:00',0,'T',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',9,1,24846.30078125,'5-0353392758_11DELBOM6E2077_28328102504599478',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',18714,4539.3,0,2742,0,135,24846.30078125,2112.71,0,762.71,243,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS107300059280\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-24T22:30\",\"LocalFromTime\":\"2021-03-24 22:30\",\"FromUTCTime\":\"2021-03-24T22:30\",\"LocalToTime\":\"2021-03-25 00:50\",\"ToUTCTime\":\"2021-03-25T00:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":23253.299999999996,\"PublishedFareTxt\":\"23,253\",\"ApiResultIndex\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18714,\"Tax\":4539.300000000001,\"YQTax\":0,\"OtherCharges\":2742,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.300000000000004,\"AirlineGSTComponent\":738,\"CarrierMiscFee\":0,\"MUFee\":900,\"intPublishedFare\":23253.299999999996,\"PublishedFare\":24846.3,\"OfferedFare\":22353.299999999996,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":380.29,\"apiMarkup\":762.71,\"IntCommission\":0,\"apiTaxOnMarkup\":137.29,\"FixedMarkUp\":1350,\"GSTOnMarkUp\":243,\"CommEarned\":2112.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"3\",\"TaxIN\":353.1,\"BaseFareCal\":4679.86,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":8.100000000000001,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":762.71,\"apiTaxOnMarkup\":137.29,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1350,\"IntTaxOnAgencyFixMarkUp\":243,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":380.29,\"PublishFare\":24846.3,\"CostToCustomer\":24846.3,\"BaseFareCal\":22733.59,\"intCommisionEarnedForAgency\":2112.71,\"CostToCompany\":22733.59,\"intOfferedFare\":22353.299999999996,\"intPublishFare\":23253.299999999996,\"TripjackMarkup\":900,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":22353.299999999996,\"apiMarkup\":762.7118644067797,\"apiTaxOnMarkup\":137.28813559322032,\"totalAgencyMarkUp\":1350,\"intGSTOnAgencyFixMarkUp\":243,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"930\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":9,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107300059280\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-24T22:30\",\"LocalFromTime\":\"2021-03-24 22:30\",\"FromUTCTime\":\"2021-03-24T22:30\",\"LocalToTime\":\"2021-03-25 00:50\",\"ToUTCTime\":\"2021-03-25T00:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":23253.299999999996,\"ApiResultIndex\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18714,\"Tax\":4539.300000000001,\"YQTax\":0,\"OtherCharges\":2742,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.300000000000004,\"AirlineGSTComponent\":738,\"CarrierMiscFee\":0,\"MUFee\":900,\"intPublishedFare\":23253.299999999996,\"PublishedFare\":24846.3,\"OfferedFare\":22353.299999999996,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1350,\"GSTOnMarkUp\":243,\"CommEarned\":2112.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"3\",\"TaxIN\":353.1,\"BaseFareCal\":4679.86,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":0,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"930\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"localFromDateTime\":\"2021-03-24 22:30\",\"localToDateTime\":\"2021-03-25 00:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":9,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS107300059280\",\"partnerId\":\"0\",\"amount\":22353.3,\"markup\":900,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-16T17:51:49.664\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25891\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2077\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-24T22:30\",\"at\":\"2021-03-25T00:50\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ganesh\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"baibhav\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"manish\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"ahsda\",\"lN\":\"asad\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"safdsadf\",\"lN\":\"sdaD\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"SAFDASF\",\"lN\":\"SADFSADFASF\",\"userProfile\":[],\"id\":6},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"ASDFASF\",\"lN\":\"AFDSADDFSA\",\"dob\":\"2021-03-03\",\"userProfile\":[],\"id\":7},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"ASDASF\",\"lN\":\"FSADFSA\",\"dob\":\"2021-03-02\",\"userProfile\":[],\"id\":8},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"SASDF\",\"lN\":\"ADasda\",\"dob\":\"2021-03-08\",\"userProfile\":[],\"id\":9}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":23253.3,\"BF\":18714,\"TAF\":4539.3,\"NF\":22353.3,\"IGST\":24.3},\"afC\":{\"TAF\":{\"AGST\":738,\"MFT\":24.3,\"MU\":900,\"YQ\":0,\"OT\":2742,\"MF\":135}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":100576.89}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221369\",\"TPSysId\":\"221370\",\"VersionId\":[\"26682\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7597\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073483','','',NULL,NULL,'0','2021-03-16 12:21:10','2021-03-16 12:21:10','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(313,0,29,5293,0,0,NULL,'2021-05-06',NULL,NULL,'6E-262','IndiGo','1',1,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',0,'11:45:00','04:30:00',0,'R',0,'18h 15m',0,8219,'BLR','DXB','1 Stop(s)',6,1,105257,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',82752,19672.4,0,16264,0,180,105257,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073517','','',NULL,NULL,'0','2021-03-16 13:01:59','2021-03-16 13:01:59','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(314,313,29,5293,0,0,NULL,'2021-05-06',NULL,NULL,'6E-66','IndiGo','1',1,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',0,'23:00:00','12:10:00',0,'R',0,'11h 40m',8219,0,'DXB','BLR','1 Stop(s)',6,1,105257,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',82752,19672.4,0,16264,0,180,105257,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073517','','',NULL,NULL,'0','2021-03-16 13:01:59','2021-03-16 13:01:59','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(315,0,29,5293,0,0,'TESTPNR-TESTPNR','2021-06-02','TJS113200059297',NULL,'6E-95','IndiGo','1',1,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999',0,'07:05:00','09:40:00',0,'R',0,'4h 5m',0,8219,'BLR','DXB','Non-stop',6,1,107164.3984375,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',82360,19140.4,0,15864,0,180,107164.3984375,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS113200059297\",\"FlightNumber\":\"6E-95\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2021-06-02T07:05\",\"LocalFromTime\":\"2021-06-02 07:05\",\"FromUTCTime\":\"2021-06-02T07:05\",\"LocalToTime\":\"2021-06-02 09:40\",\"ToUTCTime\":\"2021-06-02T09:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Wed, 02 Jun\",\"ArrivalDateTxt\":\"Wed, 02 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82360,\"Tax\":19140.399999999998,\"YQTax\":0,\"OtherCharges\":15864,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1864,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":101500.40000000001,\"PublishedFare\":107164.4,\"OfferedFare\":101044.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"709\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-06-02T09:40\",\"SegFlightNumber\":\"6E-95\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-06-02T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"709\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"709\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-06-02 12:00\",\"localToDateTime\":\"2021-06-11 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS113200059297\",\"FlightNumber\":\"6E-95\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2021-06-02T07:05\",\"LocalFromTime\":\"2021-06-02 07:05\",\"FromUTCTime\":\"2021-06-02T07:05\",\"LocalToTime\":\"2021-06-02 09:40\",\"ToUTCTime\":\"2021-06-02T09:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Wed, 02 Jun\",\"ArrivalDateTxt\":\"Wed, 02 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":107164.4,\"ApiResultIndex\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82360,\"Tax\":19140.399999999998,\"YQTax\":0,\"OtherCharges\":15864,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1864,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":101500.40000000001,\"PublishedFare\":107164.4,\"OfferedFare\":101044.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"709\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-06-02T09:40\",\"SegFlightNumber\":\"6E-95\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-06-02T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"408\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-06-11T23:00\",\"SegFlightNumber\":\"6E-96\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-06-11T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"localFromDateTime\":\"2021-06-02 07:05\",\"localToDateTime\":\"2021-06-02 09:40\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS113200059297\",\"partnerId\":\"0\",\"amount\":100300.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"sudipta@catpl.co.in\"],\"contacts\":[\"+919818999760\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-16T20:02:45.963\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25911\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"95\",\"eT\":\"320\"},\"stops\":0,\"duration\":245,\"da\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-06-02T07:05\",\"at\":\"2021-06-02T09:40\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25912\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"96\",\"eT\":\"320\"},\"stops\":0,\"duration\":250,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-06-11T17:20\",\"at\":\"2021-06-11T23:00\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Sudipta\",\"lN\":\"Banerjee\",\"dob\":\"1960-03-10\",\"pNum\":\"kjioplkio\",\"eD\":\"2024-03-21\",\"pNat\":\"IN\",\"pid\":\"2001-03-08\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"Ranu\",\"lN\":\"Banerjee\",\"dob\":\"1960-03-10\",\"pNum\":\"kjhjkhkjhkjhkj\",\"eD\":\"2022-03-18\",\"pNat\":\"IN\",\"pid\":\"2002-03-01\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Parth\",\"lN\":\"Banerjee\",\"dob\":\"2014-03-07\",\"pNum\":\"jhkjhjkhkjhkjhkj\",\"eD\":\"2023-03-30\",\"pNat\":\"IN\",\"pid\":\"2002-03-15\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"Kritika\",\"lN\":\"Bhattacharaya\",\"dob\":\"2013-03-08\",\"pNum\":\"olkiolki\",\"eD\":\"2027-03-11\",\"pNat\":\"IN\",\"pid\":\"2015-03-06\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"Kaira\",\"lN\":\"Thakur\",\"dob\":\"2020-03-12\",\"pNum\":\"uuiuiuiiui\",\"eD\":\"2028-03-24\",\"pNat\":\"IN\",\"pid\":\"2011-03-04\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"BLR-DXB\":\"TESTPNR\",\"DXB-BLR\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"Dhruv\",\"lN\":\"Banerjee\",\"dob\":\"2020-03-19\",\"pNum\":\"qwertyuio\",\"eD\":\"2023-03-30\",\"pNat\":\"IN\",\"pid\":\"2005-03-17\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":101500.4,\"BF\":82360,\"TAF\":19140.4,\"NF\":100300.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":1864,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":15864,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4943195.89}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221471\",\"TPSysId\":\"221472\",\"VersionId\":[\"26706\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7622\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073564','','',NULL,NULL,'0','2021-03-16 14:31:44','2021-03-16 14:31:44','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(316,315,29,5293,0,0,NULL,'2021-06-02',NULL,NULL,'6E-96','IndiGo','1',1,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999',0,'17:20:00','23:00:00',0,'R',0,'4h 10m',8219,0,'DXB','BLR','Non-stop',6,1,104333,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',82360,19140.4,0,15864,0,180,104333,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073564','','',NULL,NULL,'0','2021-03-16 14:31:44','2021-03-16 14:31:44','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(317,0,30,5293,0,0,'JYIRNW-JYIRNW','2021-03-23','TJS115300059309',NULL,'SG-154','SpiceJet','1',1,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',0,'10:20:00','12:40:00',0,'XA',0,'3h 50m',7701,8219,'DEL','DXB','Non-stop',6,1,65382.3984375,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',43992,15726.4,0,13004,0,180,65382.3984375,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS115300059309\",\"FlightNumber\":\"SG-154\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-03-23T10:20\",\"LocalFromTime\":\"2021-03-23 10:20\",\"FromUTCTime\":\"2021-03-23T10:20\",\"LocalToTime\":\"2021-03-23 12:40\",\"ToUTCTime\":\"2021-03-23T12:40\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43992,\"Tax\":15726.399999999998,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1310,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":59718.399999999994,\"PublishedFare\":65382.399999999994,\"OfferedFare\":57336.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":708.8,\"BaseFareCal\":10181.82,\"BaseFare\":9524,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":238,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T12:40\",\"SegFlightNumber\":\"SG-154\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCVS\",\"Price\":308,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCNS\",\"Price\":308,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNML\",\"Price\":420,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFVG\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFNV\",\"Price\":420,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFCM\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"FPML\",\"Price\":420,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DNVL\",\"Price\":420,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DBML\",\"Price\":420,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"CHML\",\"Price\":420,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS115300059309\",\"FlightNumber\":\"SG-154\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-03-23T10:20\",\"LocalFromTime\":\"2021-03-23 10:20\",\"FromUTCTime\":\"2021-03-23T10:20\",\"LocalToTime\":\"2021-03-23 12:40\",\"ToUTCTime\":\"2021-03-23T12:40\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":65382.399999999994,\"ApiResultIndex\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43992,\"Tax\":15726.399999999998,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1310,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":59718.399999999994,\"PublishedFare\":65382.399999999994,\"OfferedFare\":57336.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":708.8,\"BaseFareCal\":10181.82,\"BaseFare\":9524,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":238,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T12:40\",\"SegFlightNumber\":\"SG-154\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"206\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T04:10\",\"SegFlightNumber\":\"SG-137\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"04:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"localFromDateTime\":\"2021-03-23 10:20\",\"localToDateTime\":\"2021-03-23 12:40\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS115300059309\",\"partnerId\":\"0\",\"amount\":58518.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T10:42:45.886\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25913\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"154\",\"eT\":\"737\"},\"stops\":0,\"duration\":230,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T10:20\",\"at\":\"2021-03-23T12:40\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25914\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"137\",\"eT\":\"737\"},\"stops\":0,\"duration\":210,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T23:10\",\"at\":\"2021-03-26T04:10\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ganesh\",\"lN\":\"catpl\",\"dob\":\"1957-03-20\",\"pNum\":\"12345678\",\"eD\":\"2025-03-17\",\"pNat\":\"IN\",\"pid\":\"2017-03-16\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"baibhav\",\"lN\":\"catpl\",\"dob\":\"1957-03-20\",\"pNum\":\"65412378\",\"eD\":\"2024-03-26\",\"pNat\":\"IN\",\"pid\":\"2018-03-20\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"vivek\",\"lN\":\"catpl\",\"dob\":\"2013-03-12\",\"pNum\":\"axxxibbbb45\",\"eD\":\"2025-03-19\",\"pNat\":\"IN\",\"pid\":\"2012-03-22\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"sanjit\",\"lN\":\"catpl\",\"dob\":\"2015-03-24\",\"pNum\":\"3698745112\",\"eD\":\"2022-03-29\",\"pNat\":\"IN\",\"pid\":\"2019-03-30\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"sabir\",\"lN\":\"catpl\",\"dob\":\"2020-03-12\",\"pNum\":\"sdfasfdasf545487\",\"eD\":\"2026-03-11\",\"pNat\":\"IN\",\"pid\":\"2020-04-20\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-DXB\":\"JYIRNW\",\"DXB-DEL\":\"JYIRNW\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"asdfasfd\",\"lN\":\"asfasdf\",\"dob\":\"2020-03-18\",\"pNum\":\"sdfsfasdfasf545\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2020-03-17\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":59718.4,\"BF\":43992,\"TAF\":15726.4,\"NF\":58518.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":1310,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":13004,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4884677.49}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221524\",\"TPSysId\":\"221525\",\"VersionId\":[\"26716\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7626\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073683','','',NULL,NULL,'0','2021-03-17 05:12:09','2021-03-17 05:12:09','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(318,317,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'SG-137','SpiceJet','1',1,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',0,'23:10:00','04:10:00',0,'XA',0,'3h 30m',8219,7701,'DXB','DEL','Non-stop',6,1,62551,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',43992,15726.4,0,13004,0,180,62551,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073683','','',NULL,NULL,'0','2021-03-17 05:12:09','2021-03-17 05:12:09','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(319,0,30,5293,0,0,'TESTPNR-TESTPNR-TESTPNR','2021-03-23','TJS114900059312',NULL,'6E-23','IndiGo','1',1,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',0,'21:50:00','00:30:00',0,'R',0,'4h 10m',7701,8219,'DEL','DXB','Non-stop',6,1,77100.3984375,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',55812,15624.4,0,12776,0,180,77100.3984375,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS114900059312\",\"FlightNumber\":\"6E-23\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:50\",\"ArrivalTime\":\"00:30\",\"TravelDate\":\"2021-03-23T21:50\",\"LocalFromTime\":\"2021-03-23 21:50\",\"FromUTCTime\":\"2021-03-23T21:50\",\"LocalToTime\":\"2021-03-24 00:30\",\"ToUTCTime\":\"2021-03-24T00:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":55812,\"Tax\":15624.399999999998,\"YQTax\":0,\"OtherCharges\":12776,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1436,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":71436.4,\"PublishedFare\":77100.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"434\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T00:30\",\"SegFlightNumber\":\"6E-23\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T21:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"21:50\",\"strArrivalDtTime\":\"00:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114900059312\",\"FlightNumber\":\"6E-23\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:50\",\"ArrivalTime\":\"00:30\",\"TravelDate\":\"2021-03-23T21:50\",\"LocalFromTime\":\"2021-03-23 21:50\",\"FromUTCTime\":\"2021-03-23T21:50\",\"LocalToTime\":\"2021-03-24 00:30\",\"ToUTCTime\":\"2021-03-24T00:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":77100.4,\"ApiResultIndex\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":55812,\"Tax\":15624.399999999998,\"YQTax\":0,\"OtherCharges\":12776,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1436,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":71436.4,\"PublishedFare\":77100.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"434\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T00:30\",\"SegFlightNumber\":\"6E-23\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T21:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"21:50\",\"strArrivalDtTime\":\"00:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"926\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":240,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"4h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"localFromDateTime\":\"2021-03-23 21:50\",\"localToDateTime\":\"2021-03-24 00:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS114900059312\",\"partnerId\":\"0\",\"amount\":70236.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T11:03:54.184\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25915\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"23\",\"eT\":\"320\"},\"stops\":0,\"duration\":250,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T21:50\",\"at\":\"2021-03-24T00:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25916\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"62\",\"eT\":\"320\"},\"stops\":0,\"duration\":185,\"cT\":240,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T10:10\",\"at\":\"2021-03-25T14:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25917\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2036\",\"eT\":\"321\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T18:45\",\"at\":\"2021-03-25T20:55\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ganesh\",\"lN\":\"Ctapl\",\"dob\":\"1953-03-25\",\"pNum\":\"789654123\",\"eD\":\"2025-03-26\",\"pNat\":\"IN\",\"pid\":\"2014-03-18\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"deepk\",\"lN\":\"catpl\",\"dob\":\"1953-03-25\",\"pNum\":\"SDADAD4654DF\",\"eD\":\"2028-03-28\",\"pNat\":\"IN\",\"pid\":\"2014-03-18\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"DFGDSG\",\"lN\":\"SDFFGDFD\",\"dob\":\"2018-03-21\",\"pNum\":\"DSFGDSG797\",\"eD\":\"2027-03-31\",\"pNat\":\"IN\",\"pid\":\"2019-03-19\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"SANNY\",\"lN\":\"CATPL\",\"dob\":\"2018-03-21\",\"pNum\":\"DDASFASF975\",\"eD\":\"2026-03-24\",\"pNat\":\"IN\",\"pid\":\"2019-03-19\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"VIVEK\",\"lN\":\"CATPL\",\"dob\":\"2020-03-25\",\"pNum\":\"SAFDSSADF9897SD\",\"eD\":\"2024-03-05\",\"pNat\":\"IN\",\"pid\":\"2021-01-12\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"INFANT\",\"fN\":\"AFDSF\",\"lN\":\"SADFSA\",\"dob\":\"2020-03-17\",\"pNum\":\"SADFSAF454\",\"eD\":\"2029-03-21\",\"pNat\":\"IN\",\"pid\":\"2020-03-19\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":71436.4,\"BF\":55812,\"TAF\":15624.4,\"NF\":70236.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":1436,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":12776,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4814441.09}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221529\",\"TPSysId\":\"221530\",\"VersionId\":[\"26719\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7628\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073703','','',NULL,NULL,'0','2021-03-17 05:32:43','2021-03-17 05:32:43','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(320,319,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-62','IndiGo','1',1,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',0,'10:10:00','20:55:00',0,'R',0,'9h 15m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,74269,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',55812,15624.4,0,14212,0,180,74269,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073703','','',NULL,NULL,'0','2021-03-17 05:32:43','2021-03-17 05:32:43','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(321,0,30,5293,0,0,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2021-03-23','TJS116500059317',NULL,'6E-2077','IndiGo','1',1,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',0,'22:30:00','20:35:00',0,'R',0,'23h 35m',7701,8219,'DEL','DXB','1 Stop(s)',6,1,89716.3984375,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,12976,0,180,89716.3984375,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS116500059317\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T22:30\",\"LocalFromTime\":\"2021-03-23 22:30\",\"FromUTCTime\":\"2021-03-23T22:30\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1415,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"22h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":1055,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"17h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS116500059317\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T22:30\",\"LocalFromTime\":\"2021-03-23 22:30\",\"FromUTCTime\":\"2021-03-23T22:30\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1415,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"22h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":89716.4,\"ApiResultIndex\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":1055,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"17h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"728\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":315,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"5h 15m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"046\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:05\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"localFromDateTime\":\"2021-03-23 22:30\",\"localToDateTime\":\"2021-03-24 20:35\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS116500059317\",\"partnerId\":\"0\",\"amount\":82852.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T11:28:35.957\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25922\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2077\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"cT\":1055,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T22:30\",\"at\":\"2021-03-24T00:50\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25923\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":220,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-24T18:25\",\"at\":\"2021-03-24T20:35\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25924\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"62\",\"eT\":\"320\"},\"stops\":0,\"duration\":185,\"cT\":315,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T10:10\",\"at\":\"2021-03-25T14:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25925\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2059\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T20:00\",\"at\":\"2021-03-25T22:05\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ganesh\",\"lN\":\"Catpl\",\"dob\":\"1949-03-02\",\"pNum\":\"45997987fdf\",\"eD\":\"2024-03-28\",\"pNat\":\"IN\",\"pid\":\"2017-03-21\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"vivek\",\"lN\":\"catpl\",\"dob\":\"1949-03-02\",\"pNum\":\"sadfsf5445\",\"eD\":\"2026-03-19\",\"pNat\":\"IN\",\"pid\":\"2015-03-18\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"DSFGSD\",\"lN\":\"DFGDS\",\"dob\":\"2018-03-14\",\"pNum\":\"DSFGDS4564\",\"eD\":\"2027-03-23\",\"pNat\":\"IN\",\"pid\":\"2019-03-19\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"DSFGDSG\",\"lN\":\"DFGDSG\",\"dob\":\"2017-03-28\",\"pNum\":\"SAFASFFS879\",\"eD\":\"2022-03-08\",\"pNat\":\"IN\",\"pid\":\"2018-03-21\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"SAFASFD\",\"lN\":\"SFDASF\",\"dob\":\"2020-03-18\",\"pNum\":\"FASFD7987\",\"eD\":\"2027-03-24\",\"pNat\":\"IN\",\"pid\":\"2020-03-26\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"SADFASFERT\",\"lN\":\"WERTBNB\",\"dob\":\"2020-03-10\",\"pNum\":\"SADFASF455\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2020-03-18\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":84052.4,\"BF\":67628,\"TAF\":16424.4,\"NF\":82852.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":2036,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":12976,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4731588.69}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221539\",\"TPSysId\":\"221540\",\"VersionId\":[\"26721\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7630\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073740','','',NULL,NULL,'0','2021-03-17 05:57:55','2021-03-17 05:57:55','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(322,321,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-62','IndiGo','1',1,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',0,'10:10:00','22:05:00',0,'R',0,'10h 25m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,86885,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,15012,0,180,86885,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073740','','',NULL,NULL,'0','2021-03-17 05:57:55','2021-03-17 05:57:55','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(323,0,30,5293,0,0,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2021-03-23','TJS111000059319',NULL,'6E-2173','IndiGo','1',1,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',0,'18:20:00','20:35:00',0,'R',0,'27h 45m',7701,8219,'DEL','DXB','1 Stop(s)',6,1,89716.4,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,12976,0,180,89716.4,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS111000059319\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T18:20\",\"LocalFromTime\":\"2021-03-23 18:20\",\"FromUTCTime\":\"2021-03-23T18:20\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1320,\"LAYOVERDuration\":\"22h 0m\",\"FlyingMinutes\":1665,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"26h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"752\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":1320,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"22h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"455\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"752\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"752\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS111000059319\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T18:20\",\"LocalFromTime\":\"2021-03-23 18:20\",\"FromUTCTime\":\"2021-03-23T18:20\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1320,\"LAYOVERDuration\":\"22h 0m\",\"FlyingMinutes\":1665,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"26h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":89716.4,\"ApiResultIndex\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"752\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":1320,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"22h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"455\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"544\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":480,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"8h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"088\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T01:10\",\"SegFlightNumber\":\"6E-2191\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"localFromDateTime\":\"2021-03-23 18:20\",\"localToDateTime\":\"2021-03-24 20:35\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS111000059319\",\"partnerId\":\"0\",\"amount\":82852.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"GANESH@CATPL.CO.IN\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T11:51:43.072\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25926\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2173\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"cT\":1320,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T18:20\",\"at\":\"2021-03-23T20:25\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25927\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":220,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-24T18:25\",\"at\":\"2021-03-24T20:35\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25928\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"62\",\"eT\":\"320\"},\"stops\":0,\"duration\":185,\"cT\":480,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T10:10\",\"at\":\"2021-03-25T14:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25929\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2191\",\"eT\":\"320\"},\"stops\":0,\"duration\":145,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T22:45\",\"at\":\"2021-03-26T01:10\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"GANESH\",\"lN\":\"CATPL\",\"dob\":\"1961-03-16\",\"pNum\":\"AFSAFDSF\",\"eD\":\"2023-03-22\",\"pNat\":\"IN\",\"pid\":\"2017-03-25\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"SAFSAFDA\",\"lN\":\"SDFSAF\",\"dob\":\"1961-03-16\",\"pNum\":\"SDFSAFS\",\"eD\":\"2026-03-24\",\"pNat\":\"IN\",\"pid\":\"2018-03-22\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"ASDFAS\",\"lN\":\"SDFSFGG\",\"dob\":\"2017-03-22\",\"pNum\":\"78964521\",\"eD\":\"2024-03-27\",\"pNat\":\"IN\",\"pid\":\"2018-03-21\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Deepak\",\"lN\":\"Catpl\",\"dob\":\"2018-03-20\",\"pNum\":\"sdfsadf545\",\"eD\":\"2025-03-25\",\"pNat\":\"IN\",\"pid\":\"2017-03-29\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"asfsafd\",\"lN\":\"sdfsaf\",\"dob\":\"2020-03-17\",\"pNum\":\"sadfsadf5465\",\"eD\":\"2025-03-12\",\"pNat\":\"IN\",\"pid\":\"2020-05-18\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"sdfasfsdc\",\"lN\":\"asdfasfsf\",\"dob\":\"2020-03-24\",\"pNum\":\"dfgdsg455df\",\"eD\":\"2028-03-22\",\"pNat\":\"IN\",\"pid\":\"2020-04-21\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":84052.4,\"BF\":67628,\"TAF\":16424.4,\"NF\":82852.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":2036,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":12976,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4648736.29}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221556\",\"TPSysId\":\"221557\",\"VersionId\":[\"26732\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7632\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073788','','',NULL,NULL,'0','2021-03-17 06:20:53','2021-03-17 06:20:53','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(324,323,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-62','IndiGo','1',1,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',0,'10:10:00','01:10:00',0,'R',0,'13h 30m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,86885,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,15012,0,180,86885,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073788','','',NULL,NULL,'0','2021-03-17 06:20:53','2021-03-17 06:20:53','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,0,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-5339','IndiGo','1',1,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',0,'10:15:00','17:50:00',0,'R',0,'9h 5m',7701,8219,'DEL','DXB','1 Stop(s)',6,1,86885,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,15012,0,180,86885,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073793','','',NULL,NULL,'0','2021-03-17 06:36:08','2021-03-17 06:36:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(326,325,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-62','IndiGo','1',1,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',0,'10:10:00','20:55:00',0,'R',0,'9h 15m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,86885,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',67628,16424.4,0,15012,0,180,86885,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073793','','',NULL,NULL,'0','2021-03-17 06:36:08','2021-03-17 06:36:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(327,0,94,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-2113','IndiGo','1',1,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',0,'08:35:00','17:50:00',0,'R',0,'10h 45m',7701,8219,'DEL','DXB','1 Stop(s)',6,1,101241,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',81984,16424.4,0,15012,0,180,101241,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073806','','',NULL,NULL,'0','2021-03-17 06:44:20','2021-03-17 06:44:20','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(328,327,94,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-25','IndiGo','1',1,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',0,'04:25:00','20:30:00',0,'R',0,'14h 35m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,101241,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',81984,16424.4,0,15012,0,180,101241,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073806','','',NULL,NULL,'0','2021-03-17 06:44:20','2021-03-17 06:44:20','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(329,0,30,5293,0,0,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','2021-03-23','TJS110200059323',NULL,'6E-408','IndiGo','1',1,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290',0,'06:25:00','17:50:00',0,'R',0,'12h 55m',7701,8219,'DEL','DXB','1 Stop(s)',6,1,101956.4,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',79968,16324.4,0,12976,0,180,101956.4,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS110200059323\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T06:25\",\"LocalFromTime\":\"2021-03-23 06:25\",\"FromUTCTime\":\"2021-03-23T06:25\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":775,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"11h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":79968,\"Tax\":16324.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1936,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":96292.40000000001,\"PublishedFare\":101956.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":96292.4,\"oldFare\":100324.4,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7876.799999999999,\"BaseFareCal\":42101.82,\"BaseFare\":34276,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":918,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"255\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":415,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"628\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"255\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"255\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS110200059323\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T06:25\",\"LocalFromTime\":\"2021-03-23 06:25\",\"FromUTCTime\":\"2021-03-23T06:25\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":775,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"11h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":101956.4,\"ApiResultIndex\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":79968,\"Tax\":16324.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1936,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":96292.40000000001,\"PublishedFare\":101956.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":96292.4,\"oldFare\":100324.4,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7876.799999999999,\"BaseFareCal\":42101.82,\"BaseFare\":34276,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":918,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"255\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":415,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"628\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"126\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-03-25T09:40\",\"SegFlightNumber\":\"6E-25\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":225,\"GroundTime\":520,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"817\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:30\",\"SegFlightNumber\":\"6E-5162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-03-25T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"localFromDateTime\":\"2021-03-23 06:25\",\"localToDateTime\":\"2021-03-23 17:50\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS110200059323\",\"partnerId\":\"0\",\"amount\":95092.4,\"markup\":1200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T12:32:24.408\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25930\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"408\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"cT\":415,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T06:25\",\"at\":\"2021-03-23T08:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25931\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"61\",\"eT\":\"320\"},\"stops\":0,\"duration\":220,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T15:40\",\"at\":\"2021-03-23T17:50\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]},{\"sI\":[{\"id\":\"25932\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"25\",\"eT\":\"320\"},\"stops\":0,\"duration\":225,\"cT\":520,\"da\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5791,\"code\":\"HYD\",\"name\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"cityCode\":\"HYD\",\"city\":\"Hyderabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T04:25\",\"at\":\"2021-03-25T09:40\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"25933\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5162\",\"eT\":\"321\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5791,\"code\":\"HYD\",\"name\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"cityCode\":\"HYD\",\"city\":\"Hyderabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T18:20\",\"at\":\"2021-03-25T20:30\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"sfdsaf\",\"lN\":\"sdfsdf\",\"dob\":\"1946-03-24\",\"pNum\":\"sadfasdfsa\",\"eD\":\"2027-03-24\",\"pNat\":\"IN\",\"pid\":\"2010-03-18\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ganesh\",\"lN\":\"catpl\",\"dob\":\"1954-02-17\",\"pNum\":\"12345\",\"eD\":\"2022-02-15\",\"pNat\":\"IN\",\"pid\":\"2021-02-22\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"SANNY\",\"lN\":\"CATPL\",\"dob\":\"2018-03-21\",\"pNum\":\"DDASFASF975\",\"eD\":\"2026-03-24\",\"pNat\":\"IN\",\"pid\":\"2019-03-19\",\"userProfile\":[],\"id\":3},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"shivam\",\"lN\":\"catpl\",\"dob\":\"2016-03-22\",\"pNum\":\"aDSasdadds554\",\"eD\":\"2030-03-26\",\"pNat\":\"IN\",\"pid\":\"2017-03-21\",\"userProfile\":[],\"id\":4},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"SADFASFERT\",\"lN\":\"WERTBNB\",\"dob\":\"2020-03-10\",\"pNum\":\"SADFASF455\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2020-03-18\",\"userProfile\":[],\"id\":5},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DXB\":\"TESTPNR\",\"DXB-HYD\":\"TESTPNR\",\"HYD-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"SAFASFD\",\"lN\":\"SFDASF\",\"dob\":\"2020-03-18\",\"pNum\":\"FASFD7987\",\"eD\":\"2027-03-24\",\"pNat\":\"IN\",\"pid\":\"2020-03-26\",\"userProfile\":[],\"id\":6}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":96292.4,\"BF\":79968,\"TAF\":16324.4,\"NF\":95092.4,\"IGST\":32.4},\"afC\":{\"TAF\":{\"AGST\":1936,\"MFT\":32.4,\"MU\":1200,\"YQ\":0,\"OT\":12976,\"MF\":180}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4553643.89}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221592\",\"TPSysId\":\"221593\",\"VersionId\":[\"26742\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7639\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000073822','','',NULL,NULL,'0','2021-03-17 06:53:08','2021-03-17 06:53:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(330,329,30,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-25','IndiGo','1',1,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290',0,'04:25:00','20:30:00',0,'R',0,'14h 35m',8219,7701,'DXB','DEL','1 Stop(s)',6,1,103157,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',81984,18340.4,0,14912,0,180,103157,3416.95,0,2400,432,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000073822','','',NULL,NULL,'0','2021-03-17 06:53:08','2021-03-17 06:53:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(331,0,62,5293,0,0,NULL,'2021-03-17',NULL,NULL,'6E-23','IndiGo','1',1,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',0,'21:50:00','00:30:00',0,'R',0,'4h 10m',7701,8219,'DEL','DXB','Non-stop',2,1,25061,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',19913,4203.8,0,3733,0,60,25061,1138.98,0,800,144,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 08:24:22','2021-03-17 08:24:22','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(332,331,62,5293,0,0,NULL,'2021-03-17',NULL,NULL,'6E-62','IndiGo','1',1,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',0,'10:10:00','20:55:00',0,'R',0,'9h 15m',8219,7701,'DXB','DEL','1 Stop(s)',2,1,25061,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',19913,4203.8,0,3733,0,60,25061,1138.98,0,800,144,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 08:24:22','2021-03-17 08:24:22','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(333,0,29,5293,0,0,NULL,'2021-04-05',NULL,NULL,'6E-456','IndiGo','1',1,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315',0,'04:35:00','20:55:00',0,'R',0,'17h 50m',0,8219,'BLR','DXB','1 Stop(s)',1,1,19843,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',14693,4677.4,0,4442,0,30,19843,569.49,0,400,72,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 10:26:25','2021-03-17 10:26:25','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(334,333,29,5293,0,0,NULL,'2021-04-05',NULL,NULL,'6E-24','IndiGo','1',1,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315',0,'23:10:00','21:40:00',0,'R',0,'21h 0m',8219,0,'DXB','BLR','1 Stop(s)',1,1,19843,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',14693,4677.4,0,4442,0,30,19843,569.49,0,400,72,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 10:26:25','2021-03-17 10:26:25','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(335,0,29,5293,0,0,NULL,'2021-04-05',NULL,NULL,'6E-816','IndiGo','1',1,'5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294',267,'09:45:00','15:40:00',0,'R',355,'5h 55m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4493.7,'5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',3509,807.7,0,507,0,15,4493.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 12:07:19','2021-03-17 12:07:19','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(336,0,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-131','SpiceJet','1',1,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',0,'07:50:00','10:10:00',0,'XA',0,'3h 50m',7701,8219,'DEL','DXB','Non-stop',2,1,17488,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',13379,4108.8,0,3251,0,60,17488,338.98,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 13:28:01','2021-03-17 13:28:01','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(337,336,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-12','SpiceJet','1',1,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',0,'22:45:00','03:35:00',0,'XA',0,'3h 20m',8219,7701,'DXB','DEL','Non-stop',2,1,17488,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',13379,4108.8,0,3251,0,60,17488,338.98,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 13:28:01','2021-03-17 13:28:01','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(338,0,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-131','SpiceJet','1',1,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',0,'07:50:00','10:10:00',0,'XA',0,'3h 50m',7701,8219,'DEL','DXB','Non-stop',2,1,17488,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',13379,4108.8,0,3251,0,60,17488,338.98,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000074295','','',NULL,NULL,'0','2021-03-17 13:46:07','2021-03-17 13:46:07','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(339,338,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-12','SpiceJet','1',1,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',0,'22:45:00','03:35:00',0,'XA',0,'3h 20m',8219,7701,'DXB','DEL','Non-stop',2,1,17488,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',13379,4108.8,0,3251,0,60,17488,338.98,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000074295','','',NULL,NULL,'0','2021-03-17 13:46:07','2021-03-17 13:46:07','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(340,0,334,5293,0,0,NULL,'2021-04-06',NULL,NULL,'6E-912','IndiGo','1',1,'5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366',267,'17:30:00','22:15:00',0,'R',285,'4h 45m',7701,6000,'DEL','MAA','1 Stop(s)',1,1,5324.7,'5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4300,847.7,0,507,0,15,5324.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 13:50:31','2021-03-17 13:50:31','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(341,0,62,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-148','IndiGo','1',1,'5-1750014313_1DELBOM6E148_28420104463411940',267,'05:05:00','07:10:00',0,'T',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',3,1,7918.1,'5-1750014313_1DELBOM6E148_28420104463411940',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',5890,1497.1,0,914,0,45,7918.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-17 13:55:21','2021-03-17 13:55:21','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(342,0,335,5293,0,0,NULL,'2021-05-22',NULL,NULL,'SG-8701','SpiceJet','1',1,'4-1451484141_0DELBOMSG8701_38041253729840',463,'07:20:00','09:35:00',0,'DD',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',1,1,2684.79,'4-1451484141_0DELBOMSG8701_38041253729840',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',1927,610,0,483,0,21.19,2684.79,153.25,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,2,'0','','',NULL,NULL,'0','2021-03-17 14:06:09','2021-03-17 14:06:09','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(343,0,336,5293,0,0,'TESTPNR-TESTPNR','2021-05-22','TJS105100059478',NULL,'6E-816','IndiGo','1',1,'5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697',267,'09:45:00','15:40:00',0,'R',355,'5h 55m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4493.7,'5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',3509,807.7,0,507,0,15,4493.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS105100059478\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-05-22T09:45\",\"LocalFromTime\":\"2021-05-22 09:45\",\"FromUTCTime\":\"2021-05-22T09:45\",\"LocalToTime\":\"2021-05-22 15:40\",\"ToUTCTime\":\"2021-05-22T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":67,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"PublishedFareTxt\":\"4,317\",\"ApiResultIndex\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4493.7,\"CostToCustomer\":4493.7,\"BaseFareCal\":4258.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4258.95,\"intOfferedFare\":4216.7,\"intPublishFare\":4316.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"539\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-22T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"005\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-22T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105100059478\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-05-22T09:45\",\"LocalFromTime\":\"2021-05-22 09:45\",\"FromUTCTime\":\"2021-05-22T09:45\",\"LocalToTime\":\"2021-05-22 15:40\",\"ToUTCTime\":\"2021-05-22T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":67,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"ApiResultIndex\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"539\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-22T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"005\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-22T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"localFromDateTime\":\"2021-05-22 09:45\",\"localToDateTime\":\"2021-05-22 15:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS105100059478\",\"partnerId\":\"0\",\"amount\":4216.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"sudipta@catpl.co.in\"],\"contacts\":[\"+919818999760\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-17T19:39:30.424\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25966\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"816\",\"eT\":\"321\"},\"stops\":0,\"duration\":145,\"cT\":120,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5791,\"code\":\"HYD\",\"name\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"cityCode\":\"HYD\",\"city\":\"Hyderabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-05-22T09:45\",\"at\":\"2021-05-22T12:10\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25967\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"903\",\"eT\":\"321\"},\"stops\":0,\"duration\":90,\"da\":{\"id\":5791,\"code\":\"HYD\",\"name\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"cityCode\":\"HYD\",\"city\":\"Hyderabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-05-22T14:10\",\"at\":\"2021-05-22T15:40\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-HYD\":\"TESTPNR\",\"HYD-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Sudipta\",\"lN\":\"Banerjee\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":4316.7,\"BF\":3509,\"TAF\":807.7,\"NF\":4216.7,\"IGST\":2.7},\"afC\":{\"TAF\":{\"AGST\":183,\"MFT\":2.7,\"MU\":100,\"YQ\":0,\"OT\":507,\"MF\":15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4442375.09}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221978\",\"TPSysId\":\"221979\",\"VersionId\":[\"26880\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7680\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074319','','',NULL,NULL,'0','2021-03-17 14:08:48','2021-03-17 14:08:48','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(344,0,62,5293,0,0,'TESTPNR','2021-03-30','TJS107700059504',NULL,'6E-5012','IndiGo','1',1,'5-8880269668_10DELBOM6E5012_28476297120582197',267,'08:05:00','10:15:00',0,'T',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,3243.7,'5-8880269668_10DELBOM6E5012_28476297120582197',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2369,697.7,0,457,0,15,3243.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,6,'0',0,'{\"bookingId\":\"TJS107700059504\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"10:15\",\"TravelDate\":\"2021-03-30T08:05\",\"LocalFromTime\":\"2021-03-30 08:05\",\"FromUTCTime\":\"2021-03-30T08:05\",\"LocalToTime\":\"2021-03-30 10:15\",\"ToUTCTime\":\"2021-03-30T10:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":88,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"PublishedFareTxt\":\"3,067\",\"ApiResultIndex\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"OfferedFare\":2966.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":3243.7,\"CostToCustomer\":3243.7,\"BaseFareCal\":3008.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":3008.95,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"512\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T10:15\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":88,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107700059504\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"10:15\",\"TravelDate\":\"2021-03-30T08:05\",\"LocalFromTime\":\"2021-03-30 08:05\",\"FromUTCTime\":\"2021-03-30T08:05\",\"LocalToTime\":\"2021-03-30 10:15\",\"ToUTCTime\":\"2021-03-30T10:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":88,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"ApiResultIndex\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"OfferedFare\":2966.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"512\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T10:15\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":88,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"localFromDateTime\":\"2021-03-30 08:05\",\"localToDateTime\":\"2021-03-30 10:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS107700059504\",\"partnerId\":\"0\",\"amount\":3216.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T11:04:35.696\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25978\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5012\",\"eT\":\"320\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-30T08:05\",\"at\":\"2021-03-30T10:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"ssrSeatInfos\":{\"DEL-BOM\":{\"code\":\"6B\",\"amount\":250}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":697.7,\"IGST\":2.7,\"NF\":3216.7,\"BF\":2369,\"TF\":3316.7,\"SSRP\":250},\"afC\":{\"TAF\":{\"MF\":15,\"OT\":457,\"MFT\":2.7,\"MU\":100,\"YQ\":0,\"AGST\":123},\"SSRP\":{\"OT\":250}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4424138.99}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222026\",\"TPSysId\":\"222027\",\"VersionId\":[\"26891\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7688\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074430','','',NULL,NULL,'0','2021-03-18 05:30:34','2021-03-18 05:30:34','','','','','','','8300059507',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(347,0,339,5293,0,0,NULL,'2021-03-24',NULL,NULL,'SG-2871','SpiceJet','1',1,'4-8374846984_3DELBOMSG2871_28477589167138567',463,'11:25:00','15:50:00',0,'RS',265,'4h 25m',7701,18676,'DEL','BOM','Non-stop',1,1,4248.7,'4-8374846984_3DELBOMSG2871_28477589167138567',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,687.7,0,395,0,15,4248.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 06:06:28','2021-03-18 06:06:28','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(348,0,62,5293,0,0,'TESTPNR-TESTPNR-TESTPNR','2021-03-30','TJS108700059523',NULL,'6E-171','IndiGo','1',1,'5-8005025951_25DELBOM6E171_28478515803680618',267,'02:30:00','04:35:00',0,'T',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',3,1,8282.1,'5-8005025951_25DELBOM6E171_28478515803680618',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',6238,1513.1,0,914,0,45,8282.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-03-30T02:30\",\"LocalFromTime\":\"2021-03-30 02:30\",\"FromUTCTime\":\"2021-03-30T02:30\",\"LocalToTime\":\"2021-03-30 04:35\",\"ToUTCTime\":\"2021-03-30T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7751.099999999999,\"PublishedFareTxt\":\"7,751\",\"ApiResultIndex\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6238,\"Tax\":1513.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":246,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7751.099999999999,\"PublishedFare\":8282.1,\"OfferedFare\":7451.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":8282.1,\"CostToCustomer\":8282.1,\"BaseFareCal\":7577.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":7577.86,\"intOfferedFare\":7451.099999999999,\"intPublishFare\":7751.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"665\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"2021-04-12 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-03-30T02:30\",\"LocalFromTime\":\"2021-03-30 02:30\",\"FromUTCTime\":\"2021-03-30T02:30\",\"LocalToTime\":\"2021-03-30 04:35\",\"ToUTCTime\":\"2021-03-30T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16804.2,\"ApiResultIndex\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13664,\"Tax\":3140.2000000000003,\"YQTax\":0,\"OtherCharges\":1876,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":558,\"CarrierMiscFee\":0,\"MUFee\":600,\"intPublishedFare\":16804.2,\"PublishedFare\":17866.2,\"OfferedFare\":16204.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":900,\"GSTOnMarkUp\":162,\"CommEarned\":1408.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1452.4,\"BaseFareCal\":6668.9,\"BaseFare\":5332,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":279,\"MFT\":5.4,\"OT\":938,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1452.4,\"BaseFareCal\":6668.9,\"BaseFare\":5332,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":279,\"MFT\":5.4,\"OT\":938,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":235.4,\"BaseFareCal\":3119.9,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":0,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"665\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"395\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-04-12T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-12T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"262\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-12T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-04-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"localFromDateTime\":\"2021-03-30 02:30\",\"localToDateTime\":\"2021-03-30 04:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS108700059523\",\"partnerId\":\"0\",\"amount\":18004.2,\"markup\":600,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T11:45:16.974\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25979\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"171\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-30T02:30\",\"at\":\"2021-03-30T04:35\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"25980\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"918\",\"eT\":\"320\"},\"stops\":0,\"duration\":95,\"cT\":135,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5926,\"code\":\"JDH\",\"name\":\"Jodhpur Arpt\",\"cityCode\":\"JDH\",\"city\":\"Jodhpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-12T11:10\",\"at\":\"2021-04-12T12:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25981\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6685\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"da\":{\"id\":5926,\"code\":\"JDH\",\"name\":\"Jodhpur Arpt\",\"cityCode\":\"JDH\",\"city\":\"Jodhpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-12T15:00\",\"at\":\"2021-04-12T16:10\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"ssrSeatInfos\":{\"DEL-BOM\":{\"code\":\"8B\",\"amount\":250},\"BOM-JDH\":{\"code\":\"6B\",\"amount\":250},\"JDH-DEL\":{\"code\":\"3B\",\"amount\":400}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1},{\"ssrSeatInfos\":{\"DEL-BOM\":{\"code\":\"9B\",\"amount\":250},\"BOM-JDH\":{\"code\":\"7B\",\"amount\":250},\"JDH-DEL\":{\"code\":\"3C\",\"amount\":400}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"C1\",\"lN\":\"K1\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"I1\",\"lN\":\"K1\",\"dob\":\"2020-03-19\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":3140.2,\"IGST\":16.2,\"NF\":18004.2,\"BF\":13664,\"TF\":18604.2,\"SSRP\":1800},\"afC\":{\"TAF\":{\"MF\":90,\"OT\":1876,\"MFT\":16.2,\"MU\":600,\"YQ\":0,\"AGST\":558},\"SSRP\":{\"OT\":1800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4406134.79}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222047\",\"TPSysId\":\"222048\",\"VersionId\":[\"26901\",\"26902\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7693\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074467','','',NULL,NULL,'0','2021-03-18 06:12:35','2021-03-18 06:12:35','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(349,348,62,5293,0,0,'TESTPNR-TESTPNR-TESTPNR','2021-04-12','TJS108700059523',NULL,'6E-918','IndiGo','1',1,'5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',267,'11:10:00','16:10:00',0,'R',300,'5h 0m',7701,18676,'BOM','DEL','1 Stop(s)',3,1,9584.1,'5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',7426,1627.1,0,962,0,45,9584.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-918\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2021-04-12T11:10\",\"LocalFromTime\":\"2021-04-12 11:10\",\"FromUTCTime\":\"2021-04-12T11:10\",\"LocalToTime\":\"2021-04-12 16:10\",\"ToUTCTime\":\"2021-04-12T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Jodhpur\",\"GroundTime\":135,\"LAYOVERDuration\":\"2h 15m\",\"FlyingMinutes\":300,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9053.1,\"PublishedFareTxt\":\"9,053\",\"ApiResultIndex\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7426,\"Tax\":1627.1000000000001,\"YQTax\":0,\"OtherCharges\":962,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":312,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9053.1,\"PublishedFare\":9584.1,\"OfferedFare\":8753.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":754.7,\"BaseFareCal\":3659.95,\"BaseFare\":2963,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":754.7,\"BaseFareCal\":3659.95,\"BaseFare\":2963,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":9584.1,\"CostToCustomer\":9584.1,\"BaseFareCal\":8879.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":8879.86,\"intOfferedFare\":8753.1,\"intPublishFare\":9053.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"395\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-04-12T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-12T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"262\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-12T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-04-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"2021-04-12 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS108700059523\",\"partnerId\":\"0\",\"amount\":18004.2,\"markup\":600,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T11:45:16.974\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25979\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"171\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-30T02:30\",\"at\":\"2021-03-30T04:35\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"25980\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"918\",\"eT\":\"320\"},\"stops\":0,\"duration\":95,\"cT\":135,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5926,\"code\":\"JDH\",\"name\":\"Jodhpur Arpt\",\"cityCode\":\"JDH\",\"city\":\"Jodhpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-12T11:10\",\"at\":\"2021-04-12T12:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25981\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6685\",\"eT\":\"320\"},\"stops\":0,\"duration\":70,\"da\":{\"id\":5926,\"code\":\"JDH\",\"name\":\"Jodhpur Arpt\",\"cityCode\":\"JDH\",\"city\":\"Jodhpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-04-12T15:00\",\"at\":\"2021-04-12T16:10\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"ssrSeatInfos\":{\"DEL-BOM\":{\"code\":\"8B\",\"amount\":250},\"BOM-JDH\":{\"code\":\"6B\",\"amount\":250},\"JDH-DEL\":{\"code\":\"3B\",\"amount\":400}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1},{\"ssrSeatInfos\":{\"DEL-BOM\":{\"code\":\"9B\",\"amount\":250},\"BOM-JDH\":{\"code\":\"7B\",\"amount\":250},\"JDH-DEL\":{\"code\":\"3C\",\"amount\":400}},\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"C1\",\"lN\":\"K1\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-JDH\":\"TESTPNR\",\"JDH-DEL\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"I1\",\"lN\":\"K1\",\"dob\":\"2020-03-19\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":3140.2,\"IGST\":16.2,\"NF\":18004.2,\"BF\":13664,\"TF\":18604.2,\"SSRP\":1800},\"afC\":{\"TAF\":{\"MF\":90,\"OT\":1876,\"MFT\":16.2,\"MU\":600,\"YQ\":0,\"AGST\":558},\"SSRP\":{\"OT\":1800}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4406134.79}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222047\",\"TPSysId\":\"222048\",\"VersionId\":[\"26901\",\"26902\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7693\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074467','','',NULL,NULL,'0','2021-03-18 06:12:35','2021-03-18 06:12:35','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(350,0,62,5293,0,0,'TESTPNR-TESTPNR','2021-03-26','TJS109200059563',NULL,'6E-2027','IndiGo','1',1,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411',267,'17:55:00','23:35:00',0,'T',340,'5h 40m',7701,6000,'DEL','MAA','1 Stop(s)',3,1,12288.1,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',9952,1805.1,0,1014,0,45,12288.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS109200059563\",\"FlightNumber\":\"6E-2027\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2021-03-26T17:55\",\"LocalFromTime\":\"2021-03-26 17:55\",\"FromUTCTime\":\"2021-03-26T17:55\",\"LocalToTime\":\"2021-03-26 23:35\",\"ToUTCTime\":\"2021-03-26T23:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":36,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11757.1,\"PublishedFareTxt\":\"11,757\",\"ApiResultIndex\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9952,\"Tax\":1805.1000000000001,\"YQTax\":0,\"OtherCharges\":1014,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11757.1,\"PublishedFare\":12288.1,\"OfferedFare\":11457.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":12288.1,\"CostToCustomer\":12288.1,\"BaseFareCal\":11583.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":11583.86,\"intOfferedFare\":11457.1,\"intPublishFare\":11757.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"872\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-26T20:35\",\"SegFlightNumber\":\"6E-2027\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":125,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"359\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-26T23:35\",\"SegFlightNumber\":\"6E-543\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-26T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109200059563\",\"FlightNumber\":\"6E-2027\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2021-03-26T17:55\",\"LocalFromTime\":\"2021-03-26 17:55\",\"FromUTCTime\":\"2021-03-26T17:55\",\"LocalToTime\":\"2021-03-26 23:35\",\"ToUTCTime\":\"2021-03-26T23:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":36,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11757.1,\"ApiResultIndex\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9952,\"Tax\":1805.1000000000001,\"YQTax\":0,\"OtherCharges\":1014,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11757.1,\"PublishedFare\":12288.1,\"OfferedFare\":11457.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"872\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-26T20:35\",\"SegFlightNumber\":\"6E-2027\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":125,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"359\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-26T23:35\",\"SegFlightNumber\":\"6E-543\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-26T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"localFromDateTime\":\"2021-03-26 17:55\",\"localToDateTime\":\"2021-03-26 23:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS109200059563\",\"partnerId\":\"0\",\"amount\":12157.1,\"markup\":300,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T13:21:01.245\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25997\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2027\",\"eT\":\"321\"},\"stops\":0,\"duration\":160,\"cT\":125,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-26T17:55\",\"at\":\"2021-03-26T20:35\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}},{\"id\":\"25998\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"543\",\"eT\":\"320\"},\"stops\":0,\"duration\":55,\"da\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":4725,\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-26T22:40\",\"at\":\"2021-03-26T23:35\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"ssrSeatInfos\":{\"DEL-BLR\":{\"code\":\"7B\",\"amount\":350}},\"pnrDetails\":{\"DEL-BLR\":\"TESTPNR\",\"BLR-MAA\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1},{\"ssrSeatInfos\":{\"DEL-BLR\":{\"code\":\"8B\",\"amount\":350}},\"pnrDetails\":{\"DEL-BLR\":\"TESTPNR\",\"BLR-MAA\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"C2\",\"lN\":\"K2\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BLR\":\"TESTPNR\",\"BLR-MAA\":\"TESTPNR\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"I2\",\"lN\":\"K2\",\"dob\":\"2020-03-11\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1805.1,\"IGST\":8.1,\"NF\":12157.1,\"BF\":9952,\"TF\":12457.1,\"SSRP\":700},\"afC\":{\"TAF\":{\"MF\":45,\"OT\":1014,\"MFT\":8.1,\"MU\":300,\"YQ\":0,\"AGST\":438},\"SSRP\":{\"OT\":700}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4393977.69}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222103\",\"TPSysId\":\"222104\",\"VersionId\":[\"26914\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7697\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074532','','',NULL,NULL,'0','2021-03-18 07:47:57','2021-03-18 07:47:57','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(351,0,29,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-2027','IndiGo','1',1,'5-6767111056_16DELBLR6E2027BLRMAA6E543_28485687542690192',267,'17:55:00','23:35:00',0,'T',340,'5h 40m',7701,6000,'DEL','MAA','1 Stop(s)',3,1,12288.1,'5-6767111056_16DELBLR6E2027BLRMAA6E543_28485687542690192',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',9952,1805.1,0,1014,0,45,12288.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 08:09:39','2021-03-18 08:09:39','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(353,0,98,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-6194','IndiGo','1',1,'5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',267,'12:40:00','17:40:00',0,'R',300,'5h 0m',6000,7701,'MAA','DEL','1 Stop(s)',3,1,13518.1,'5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',11290,1697.1,0,840,0,45,13518.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 08:20:51','2021-03-18 08:20:51','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(354,0,98,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-6194','IndiGo','1',1,'TJS105900059585_3MAAIDR6E6194IDRDEL6E6409_28486614960605510',267,'12:40:00','17:40:00',0,'R',300,'5h 0m',6000,7701,'MAA','DEL','1 Stop(s)',3,1,13518.1,'TJS105900059585_3MAAIDR6E6194IDRDEL6E6409_28486614960605510',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',11290,1697.1,0,840,0,45,13518.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 08:22:54','2021-03-18 08:22:54','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(356,0,62,5293,0,0,'PBDVJG-PBDVJG','2021-03-25','TJS101200059592',NULL,'SG-503','SpiceJet','1',1,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494',463,'05:40:00','22:40:00',0,'RS',1020,'17h 0m',6000,7701,'MAA','DEL','1 Stop(s)',3,1,12379.1,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',10229,1619.1,0,742,0,45,12379.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS101200059592\",\"FlightNumber\":\"SG-503\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2021-03-25T05:40\",\"LocalFromTime\":\"2021-03-25 05:40\",\"FromUTCTime\":\"2021-03-25T05:40\",\"LocalToTime\":\"2021-03-25 22:40\",\"ToUTCTime\":\"2021-03-25T22:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":705,\"LAYOVERDuration\":\"11h 45m\",\"FlyingMinutes\":1020,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"17h 0m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11848.1,\"PublishedFareTxt\":\"11,848\",\"ApiResultIndex\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10229,\"Tax\":1619.1000000000001,\"YQTax\":0,\"OtherCharges\":742,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":524,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11848.1,\"PublishedFare\":12379.1,\"OfferedFare\":11548.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":189.7,\"BaseFareCal\":1560.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":72,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":12379.1,\"CostToCustomer\":12379.1,\"BaseFareCal\":11674.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":11674.86,\"intOfferedFare\":11548.1,\"intPublishFare\":11848.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"113\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-25T08:15\",\"SegFlightNumber\":\"SG-503\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":705,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":\"11h 45m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"775\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:40\",\"SegFlightNumber\":\"SG-179\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"JNML\",\"Price\":350,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFVG\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFNV\",\"Price\":350,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"DNVL\",\"Price\":350,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"DBML\",\"Price\":350,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101200059592\",\"FlightNumber\":\"SG-503\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2021-03-25T05:40\",\"LocalFromTime\":\"2021-03-25 05:40\",\"FromUTCTime\":\"2021-03-25T05:40\",\"LocalToTime\":\"2021-03-25 22:40\",\"ToUTCTime\":\"2021-03-25T22:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":705,\"LAYOVERDuration\":\"11h 45m\",\"FlyingMinutes\":1020,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"17h 0m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11848.1,\"ApiResultIndex\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10229,\"Tax\":1619.1000000000001,\"YQTax\":0,\"OtherCharges\":742,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":524,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11848.1,\"PublishedFare\":12379.1,\"OfferedFare\":11548.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":189.7,\"BaseFareCal\":1560.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":72,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"113\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-25T08:15\",\"SegFlightNumber\":\"SG-503\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":705,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":\"11h 45m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"775\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:40\",\"SegFlightNumber\":\"SG-179\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"localFromDateTime\":\"2021-03-25 05:40\",\"localToDateTime\":\"2021-03-25 22:40\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS101200059592\",\"partnerId\":\"0\",\"amount\":11548.1,\"markup\":300,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T14:00:34.631\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26005\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"503\",\"eT\":\"737\"},\"stops\":0,\"duration\":155,\"cT\":705,\"da\":{\"id\":4725,\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6133,\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T05:40\",\"at\":\"2021-03-25T08:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}},{\"id\":\"26006\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"179\",\"eT\":\"737\"},\"stops\":0,\"duration\":160,\"da\":{\"id\":6133,\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T20:00\",\"at\":\"2021-03-25T22:40\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"MAA-CCU\":\"PBDVJG\",\"CCU-DEL\":\"PBDVJG\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Atulya\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"MAA-CCU\":\"PBDVJG\",\"CCU-DEL\":\"PBDVJG\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"C2\",\"lN\":\"K2\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"MAA-CCU\":\"PBDVJG\",\"CCU-DEL\":\"PBDVJG\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"I1\",\"lN\":\"K1\",\"dob\":\"2020-03-12\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1619.1,\"IGST\":8.1,\"NF\":11548.1,\"BF\":10229,\"TF\":11848.1},\"afC\":{\"TAF\":{\"MF\":45,\"OT\":742,\"MFT\":8.1,\"MU\":300,\"YQ\":0,\"AGST\":524}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4382429.59}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222145\",\"TPSysId\":\"222146\",\"VersionId\":[],\"CustomerSysId\":\"104941\",\"TrxId\":\"7715\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074552','','',NULL,NULL,'0','2021-03-18 08:29:23','2021-03-18 08:29:23','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(357,0,99,5293,0,0,NULL,'2021-03-30',NULL,NULL,'SG-108','SpiceJet','1',1,'4-9901803256_12MAADELSG108DELCCUSG253_28491484726828984',463,'21:45:00','20:30:00',0,'RS',1365,'22h 45m',6000,14323,'MAA','CCU','1 Stop(s)',1,1,3714.7,'4-9901803256_12MAADELSG108DELCCUSG253_28491484726828984',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',2899,638.7,0,371,0,15,3714.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 09:42:46','2021-03-18 09:42:46','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(358,0,99,5293,0,0,NULL,'2021-03-25',NULL,NULL,'FZ-8516','Fly Dubai','1',0,'10-8810145964_0MAADXBFZ8516_28494700828366717',229,'20:20:00','23:10:00',0,'K',260,'2h 50m',6000,8219,'MAA','DXB','Non-stop',1,1,9898.7,'10-8810145964_0MAADXBFZ8516_28494700828366717',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/FZ.gif','INR',6850,3048.7,1091,628,0,15,9898.7,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 10:37:23','2021-03-18 10:37:23','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(359,0,349,5293,0,0,'TESTPNR-TESTPNR','2021-03-25','TJS113200059662',NULL,'UK-802','Vistara','',0,'10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006',539,'08:40:00','15:55:00',0,'K',525,'7h 15m',6000,8219,'MAA','DXB','1 Stop(s)',1,1,13504.7,'10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',10155,3349.7,1091,628,0,15,13504.7,84.75,0,84.75,0,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS113200059662\",\"FlightNumber\":\"UK-802\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2021-03-25T08:40\",\"LocalFromTime\":\"2021-03-25 08:40\",\"FromUTCTime\":\"2021-03-25T08:40\",\"LocalToTime\":\"2021-03-25 15:55\",\"ToUTCTime\":\"2021-03-25T15:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":525,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":13504.7,\"PublishedFareTxt\":\"13,505\",\"ApiResultIndex\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10155,\"Tax\":3349.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":608,\"CarrierMiscFee\":905,\"MUFee\":100,\"intPublishedFare\":13504.7,\"PublishedFare\":13504.7,\"OfferedFare\":13404.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3349.7,\"BaseFareCal\":13419.95,\"BaseFare\":10155,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":608,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":905,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":13504.7,\"CostToCustomer\":13504.7,\"BaseFareCal\":13419.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":13419.95,\"intOfferedFare\":13404.7,\"intPublishFare\":13504.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"859\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-25T09:45\",\"SegFlightNumber\":\"UK-802\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":65,\"GroundTime\":225,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"200\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T15:55\",\"SegFlightNumber\":\"FZ-4010\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-25T13:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:30\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS113200059662\",\"FlightNumber\":\"UK-802\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2021-03-25T08:40\",\"LocalFromTime\":\"2021-03-25 08:40\",\"FromUTCTime\":\"2021-03-25T08:40\",\"LocalToTime\":\"2021-03-25 15:55\",\"ToUTCTime\":\"2021-03-25T15:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":525,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":13504.7,\"ApiResultIndex\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10155,\"Tax\":3349.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":608,\"CarrierMiscFee\":905,\"MUFee\":100,\"intPublishedFare\":13504.7,\"PublishedFare\":13504.7,\"OfferedFare\":13404.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3349.7,\"BaseFareCal\":13419.95,\"BaseFare\":10155,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":608,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":905,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"859\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-25T09:45\",\"SegFlightNumber\":\"UK-802\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":65,\"GroundTime\":225,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"200\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T15:55\",\"SegFlightNumber\":\"FZ-4010\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-25T13:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:30\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"localFromDateTime\":\"2021-03-25 08:40\",\"localToDateTime\":\"2021-03-25 15:55\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS113200059662\",\"partnerId\":\"0\",\"amount\":13404.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak.catpl@gmail.com\"],\"contacts\":[\"+918318864487\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T16:26:49.287\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26025\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"802\",\"eT\":\"320\"},\"stops\":0,\"duration\":65,\"cT\":225,\"da\":{\"id\":4725,\"code\":\"MAA\",\"name\":\"Chennai Arpt\",\"cityCode\":\"MAA\",\"city\":\"Chennai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T08:40\",\"at\":\"2021-03-25T09:45\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"INTERNATIONAL\"}},{\"id\":\"26026\",\"fD\":{\"aI\":{\"code\":\"FZ\",\"name\":\"Fly Dubai\",\"isLcc\":true},\"fN\":\"4010\",\"eT\":\"73H\"},\"stops\":0,\"duration\":235,\"da\":{\"id\":4342,\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5118,\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T13:30\",\"at\":\"2021-03-25T15:55\",\"iand\":false,\"sN\":1,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"INTERNATIONAL\"}}]}],\"travellerInfos\":[{\"ssrMealInfos\":{\"MAA-BLR\":{\"code\":\"VGML\",\"amount\":0,\"desc\":\"Vegan Veg Meal\"}},\"pnrDetails\":{\"MAA-BLR\":\"TESTPNR\",\"BLR-DXB\":\"TESTPNR\"},\"ticketNumberDetails\":{\"MAA-BLR\":\"11111111111\",\"BLR-DXB\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"dob\":\"1950-03-21\",\"pNum\":\"hbxkduhw\",\"eD\":\"2022-03-16\",\"pNat\":\"IN\",\"pid\":\"2012-03-14\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":3349.7,\"IGST\":2.7,\"NF\":13404.7,\"BF\":10155,\"TF\":13504.7,\"SSRP\":0},\"afC\":{\"TAF\":{\"MF\":15,\"OT\":628,\"MFT\":2.7,\"MU\":100,\"YQ\":1091,\"YR\":905,\"AGST\":608},\"SSRP\":{\"OT\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4369024.89}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222237\",\"TPSysId\":\"222238\",\"VersionId\":[\"26957\"],\"CustomerSysId\":\"106515\",\"TrxId\":\"7727\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074662','','',NULL,NULL,'0','2021-03-18 10:54:31','2021-03-18 10:54:31','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(360,0,350,5293,0,0,NULL,'2021-03-25',NULL,NULL,'6E-65','IndiGo','1',1,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',0,'05:05:00','08:10:00',0,'R',0,'4h 35m',6000,8219,'MAA','DXB','Non-stop',1,1,16188,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',12507,3680.4,0,3107,0,30,16188,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 11:29:05','2021-03-18 11:29:05','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(361,360,350,5293,0,0,NULL,'2021-03-25',NULL,NULL,'6E-62','IndiGo','1',1,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',0,'22:00:00','19:25:00',0,'R',0,'19h 55m',8219,6000,'DXB','MAA','1 Stop(s)',1,1,16188,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',12507,3680.4,0,3107,0,30,16188,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 11:29:05','2021-03-18 11:29:05','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(362,0,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-131','SpiceJet','1',1,'4-2978024104_0DELDXBSG131DXBDELSG12_28499496596450385',0,'07:50:00','10:10:00',0,'XA',0,'3h 50m',7701,8219,'DEL','DXB','Non-stop',1,1,12372,'4-2978024104_0DELDXBSG131DXBDELSG12_28499496596450385',1,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',8617,3754.4,0,3251,0,30,12372,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 12:04:17','2021-03-18 12:04:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(363,362,62,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-12','SpiceJet','1',1,'4-2978024104_0DELDXBSG131DXBDELSG12_28499496596450385',0,'22:45:00','03:35:00',0,'XA',0,'3h 20m',8219,7701,'DXB','DEL','Non-stop',1,1,12372,'4-2978024104_0DELDXBSG131DXBDELSG12_28499496596450385',2,1,1,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',8617,3754.4,0,3251,0,30,12372,169.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 12:04:17','2021-03-18 12:04:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(364,0,30,5293,0,0,'Y8YVSS','2021-03-23','TJS104300059706',NULL,'SG-7177','SpiceJet','1',1,'4-5368534800_4DELBOMSG7177_28501832856284484',463,'16:40:00','20:15:00',0,'RS',215,'3h 35m',7701,18676,'DEL','BOM','Non-stop',3,1,10292.1,'4-5368534800_4DELBOMSG7177_28501832856284484',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',8197,1564.1,0,790,0,45,10292.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS104300059706\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-23T16:40\",\"LocalFromTime\":\"2021-03-23 16:40\",\"FromUTCTime\":\"2021-03-23T16:40\",\"LocalToTime\":\"2021-03-23 20:15\",\"ToUTCTime\":\"2021-03-23T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9761.1,\"PublishedFareTxt\":\"9,761\",\"ApiResultIndex\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8197,\"Tax\":1564.1000000000001,\"YQTax\":0,\"OtherCharges\":790,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":421,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9761.1,\"PublishedFare\":10292.1,\"OfferedFare\":9461.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":188.7,\"BaseFareCal\":1559.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":10292.1,\"CostToCustomer\":10292.1,\"BaseFareCal\":9587.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":9587.86,\"intOfferedFare\":9461.1,\"intPublishFare\":9761.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"262\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104300059706\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-23T16:40\",\"LocalFromTime\":\"2021-03-23 16:40\",\"FromUTCTime\":\"2021-03-23T16:40\",\"LocalToTime\":\"2021-03-23 20:15\",\"ToUTCTime\":\"2021-03-23T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9761.1,\"ApiResultIndex\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8197,\"Tax\":1564.1000000000001,\"YQTax\":0,\"OtherCharges\":790,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":421,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9761.1,\"PublishedFare\":10292.1,\"OfferedFare\":9461.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":188.7,\"BaseFareCal\":1559.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"262\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"localFromDateTime\":\"2021-03-23 16:40\",\"localToDateTime\":\"2021-03-23 20:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS104300059706\",\"partnerId\":\"0\",\"amount\":9461.1,\"markup\":300,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T18:06:09.563\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26041\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"7177\",\"eT\":\"737\"},\"stops\":1,\"so\":[{\"id\":5581,\"code\":\"GWL\",\"name\":\"Gwalior Airport\",\"cityCode\":\"GWL\",\"city\":\"Gwalior\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":0}],\"duration\":215,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T16:40\",\"at\":\"2021-03-23T20:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"Y8YVSS\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ganesh\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"Y8YVSS\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"vivek\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"Y8YVSS\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"baibhav\",\"lN\":\"catpl\",\"dob\":\"2020-03-17\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1564.1,\"IGST\":8.1,\"NF\":9461.1,\"BF\":8197,\"TF\":9761.1},\"afC\":{\"TAF\":{\"MF\":45,\"OT\":790,\"MFT\":8.1,\"MU\":300,\"YQ\":0,\"AGST\":421}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4356597.09}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222306\",\"TPSysId\":\"222307\",\"VersionId\":[],\"CustomerSysId\":\"103115\",\"TrxId\":\"7736\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074726','','',NULL,NULL,'0','2021-03-18 12:35:27','2021-03-18 12:35:27','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(365,0,36,5293,0,0,NULL,'2021-03-24',NULL,NULL,'6E-268','IndiGo','1',1,'5-0964115347_13DELAMD6E268AMDBOM6E219_28502514252051000',267,'18:55:00','23:25:00',0,'R',270,'4h 30m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,5954.7,'5-0964115347_13DELAMD6E268AMDBOM6E219_28502514252051000',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,877.7,0,507,0,15,5954.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 12:46:49','2021-03-18 12:46:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(366,0,62,5293,0,0,NULL,'2021-03-18',NULL,NULL,'6E-2265','IndiGo','1',1,'5-7340912259_0DELCCU6E2265_28502669460919848',267,'22:45:00','01:00:00',0,'M',135,'2h 15m',7701,14323,'DEL','CCU','Non-stop',1,1,5901.7,'5-7340912259_0DELCCU6E2265_28502669460919848',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,824.7,0,457,0,15,5901.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000074741','','',NULL,NULL,'0','2021-03-18 12:48:48','2021-03-18 12:48:48','09AACCM8579M1ZL','catpl','deepak@catpl.co.in','9695357709','noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(367,366,62,5293,0,0,NULL,'2021-03-31',NULL,NULL,'6E-2127','IndiGo','1',1,'5-7340912259_15CCUDEL6E2127_28502669401397036',267,'01:10:00','03:25:00',0,'T',135,'2h 15m',7701,14323,'CCU','DEL','Non-stop',1,1,4093.7,'5-7340912259_15CCUDEL6E2127_28502669401397036',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2683,1233.7,0,977,0,15,4093.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000074741','','',NULL,NULL,'0','2021-03-18 12:48:48','2021-03-18 12:48:48','09AACCM8579M1ZL','catpl','deepak@catpl.co.in','9695357709','noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(371,0,357,5293,0,0,NULL,'2021-03-23',NULL,NULL,'6E-637','IndiGo','1',1,'5-2772778711_29BOMDEL6E637_28504240365038430',267,'17:25:00','19:30:00',0,'M',125,'2h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,5875.7,'5-2772778711_29BOMDEL6E637_28504240365038430',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,798.7,0,431,0,15,5875.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 13:16:23','2021-03-18 13:16:23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(372,0,358,5293,0,0,'KBYQSG','2021-03-23','TJS102100059762',NULL,'SG-2642','SpiceJet','1',1,'4-9441876623_3BOMDELSG2642_28505641036362367',463,'16:20:00','20:25:00',0,'RS',245,'4h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,4300.7,'4-9441876623_3BOMDELSG2642_28505641036362367',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3371,752.7,0,461,0,15,4300.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS102100059762\",\"FlightNumber\":\"SG-2642\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-23T16:20\",\"LocalFromTime\":\"2021-03-23 16:20\",\"FromUTCTime\":\"2021-03-23T16:20\",\"LocalToTime\":\"2021-03-23 20:25\",\"ToUTCTime\":\"2021-03-23T20:25\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4123.7,\"PublishedFareTxt\":\"4,124\",\"ApiResultIndex\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":752.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4123.7,\"PublishedFare\":4300.7,\"OfferedFare\":4023.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":752.7,\"BaseFareCal\":4065.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4300.7,\"CostToCustomer\":4300.7,\"BaseFareCal\":4065.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4065.95,\"intOfferedFare\":4023.7,\"intPublishFare\":4123.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"336\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"SG-2642\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102100059762\",\"FlightNumber\":\"SG-2642\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-23T16:20\",\"LocalFromTime\":\"2021-03-23 16:20\",\"FromUTCTime\":\"2021-03-23T16:20\",\"LocalToTime\":\"2021-03-23 20:25\",\"ToUTCTime\":\"2021-03-23T20:25\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4123.7,\"ApiResultIndex\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":752.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4123.7,\"PublishedFare\":4300.7,\"OfferedFare\":4023.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":752.7,\"BaseFareCal\":4065.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"336\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"SG-2642\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"localFromDateTime\":\"2021-03-23 16:20\",\"localToDateTime\":\"2021-03-23 20:25\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102100059762\",\"partnerId\":\"0\",\"amount\":4023.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"ganesh1@catpl.co.in\"],\"contacts\":[\"+918585960381\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-18T19:08:37.222\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26047\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"2642\",\"eT\":\"DH8\"},\"stops\":1,\"so\":[{\"id\":5875,\"code\":\"JLR\",\"name\":\"Jabalpur Airport\",\"cityCode\":\"JLR\",\"city\":\"Jabalpur\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10}],\"duration\":245,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-23T16:20\",\"at\":\"2021-03-23T20:25\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"KBYQSG\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ganesh\",\"lN\":\"catpl\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":752.7,\"IGST\":2.7,\"NF\":4023.7,\"BF\":3371,\"TF\":4123.7},\"afC\":{\"TAF\":{\"MF\":15,\"OT\":461,\"MFT\":2.7,\"MU\":100,\"YQ\":0,\"AGST\":174}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4352573.39}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222356\",\"TPSysId\":\"222357\",\"VersionId\":[\"27004\"],\"CustomerSysId\":\"106620\",\"TrxId\":\"7749\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074784','','',NULL,NULL,'0','2021-03-18 13:38:07','2021-03-18 13:38:07','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(374,0,360,5293,0,0,NULL,'2021-03-23',NULL,NULL,'SG-2642','SpiceJet','1',1,'4-6371971645_3BOMDELSG2642_28505871562291049',463,'16:20:00','20:25:00',0,'RS',245,'4h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,4300.7,'4-6371971645_3BOMDELSG2642_28505871562291049',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3371,752.7,0,461,0,15,4300.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 13:53:39','2021-03-18 13:53:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(375,0,361,5293,0,0,NULL,'2021-03-23',NULL,NULL,'SG-2871','SpiceJet','1',1,'4-8345789847_3DELBOMSG2871_28507432296615690',463,'11:25:00','15:50:00',0,'RS',265,'4h 25m',7701,18676,'DEL','BOM','Non-stop',1,1,4248.7,'4-8345789847_3DELBOMSG2871_28507432296615690',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,687.7,0,395,0,15,4248.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 14:09:24','2021-03-18 14:09:24','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(376,375,361,5293,0,0,NULL,'2021-03-25',NULL,NULL,'SG-790','SpiceJet','1',1,'4-8345789847_1BOMDELSG790_28507432281761147',463,'15:25:00','17:30:00',0,'RS',125,'2h 5m',7701,18676,'BOM','DEL','Non-stop',1,1,4457.7,'4-8345789847_1BOMDELSG790_28507432281761147',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3520,760.7,0,461,0,15,4457.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-18 14:09:24','2021-03-18 14:09:24','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(377,0,362,5293,0,0,NULL,'2021-03-19',NULL,NULL,'6E-2077','IndiGo','1',1,'5-0752493295_0DELBOM6E2077_28562206079233970',267,'22:30:00','00:50:00',0,'M',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',1,1,5901.7,'5-0752493295_0DELBOM6E2077_28562206079233970',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,824.7,0,457,0,15,5901.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,1,'11000000074903','','',NULL,NULL,'0','2021-03-19 05:22:04','2021-03-19 05:22:04','18AABCU9603R1ZM','abcdef','abcd@gmail.com','8585960381','sadd sadv s ','das',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(378,0,363,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-945','Vistara','',1,'10-3710415267_5DELBOMUK945_28563367765913530',539,'12:30:00','14:40:00',0,'K',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4880.7,'10-3710415267_5DELBOMUK945_28563367765913530',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',3896,807.7,0,358,0,15,4880.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 05:42:27','2021-03-19 05:42:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(379,378,363,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-910','Vistara','',1,'10-3710415267_4BOMDELUK910_28563367727476583',539,'17:00:00','19:00:00',0,'K',120,'2h 0m',7701,18676,'BOM','DEL','Non-stop',1,1,5109.7,'10-3710415267_4BOMDELUK910_28563367727476583',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',4140,792.7,0,331,0,15,5109.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 05:42:27','2021-03-19 05:42:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(380,0,364,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-945','Vistara','',1,'10-3710415267_5DELBOMUK945_28563367765913530',539,'12:30:00','14:40:00',0,'K',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4880.7,'10-3710415267_5DELBOMUK945_28563367765913530',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',3896,807.7,0,358,0,15,4880.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 05:42:47','2021-03-19 05:42:47','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(381,380,364,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-910','Vistara','',1,'10-3710415267_4BOMDELUK910_28563367727476583',539,'17:00:00','19:00:00',0,'K',120,'2h 0m',7701,18676,'BOM','DEL','Non-stop',1,1,5109.7,'10-3710415267_4BOMDELUK910_28563367727476583',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',4140,792.7,0,331,0,15,5109.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 05:42:47','2021-03-19 05:42:47','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(382,0,365,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-945','Vistara','',1,'10-3710415267_5DELBOMUK945_28563367765913530',539,'12:30:00','14:40:00',0,'K',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4880.7,'10-3710415267_5DELBOMUK945_28563367765913530',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',3896,807.7,0,358,0,15,4880.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,3,'11000000074927','','',NULL,NULL,'0','2021-03-19 05:50:51','2021-03-19 05:50:51','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(383,382,365,5293,0,0,NULL,'2021-03-19',NULL,NULL,'UK-910','Vistara','',1,'10-3710415267_4BOMDELUK910_28563367727476583',539,'17:00:00','19:00:00',0,'K',120,'2h 0m',7701,18676,'BOM','DEL','Non-stop',1,1,5109.7,'10-3710415267_4BOMDELUK910_28563367727476583',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',4140,792.7,0,331,0,15,5109.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,3,'11000000074927','','',NULL,NULL,'0','2021-03-19 05:50:51','2021-03-19 05:50:51','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(384,0,366,5293,0,0,'D555RI','2021-03-19','TJS109400059802',NULL,'SG-7177','SpiceJet','1',1,'4-2355667927_1DELBOMSG7177_28563250991241625',463,'16:40:00','20:15:00',0,'RS',215,'3h 35m',7701,18676,'DEL','BOM','Non-stop',1,1,4248.7,'4-2355667927_1DELBOMSG7177_28563250991241625',1,1,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,687.7,0,395,0,15,4248.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS109400059802\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"196\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109400059802\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"196\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"localFromDateTime\":\"2021-03-19 16:40\",\"localToDateTime\":\"2021-03-19 20:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS109400059802\",\"partnerId\":\"0\",\"amount\":3971.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-19T11:38:52.484\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26059\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"7177\",\"eT\":\"737\"},\"stops\":1,\"so\":[{\"id\":5581,\"code\":\"GWL\",\"name\":\"Gwalior Airport\",\"cityCode\":\"GWL\",\"city\":\"Gwalior\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":0}],\"duration\":215,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-19T16:40\",\"at\":\"2021-03-19T20:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"D555RI\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ravi\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":687.7,\"IGST\":2.7,\"NF\":3971.7,\"BF\":3384,\"TF\":4071.7},\"afC\":{\"TAF\":{\"MF\":15,\"OT\":395,\"MFT\":2.7,\"MU\":100,\"YQ\":0,\"AGST\":175}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4342976.99}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222437\",\"TPSysId\":\"222438\",\"VersionId\":[\"27030\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7770\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000074945','','',NULL,NULL,'0','2021-03-19 06:02:03','2021-03-19 06:02:03','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(385,0,367,5293,0,0,'O8D2PP-O8D2PP','2021-03-19','TJS102300059832',NULL,'SG-7177','SpiceJet','1',1,'4-1771034981_1DELBOMSG7177_28573462518091262',463,'16:40:00','20:15:00',0,'RS',215,'3h 35m',7701,18676,'DEL','BOM','Non-stop',1,1,4248.7,'4-1771034981_1DELBOMSG7177_28573462518091262',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3384,687.7,0,395,0,15,4248.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,6,'0',0,'{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"221\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8352.4,\"ApiResultIndex\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6904,\"Tax\":1448.4,\"YQTax\":0,\"OtherCharges\":856,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":357,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":8352.4,\"PublishedFare\":8706.4,\"OfferedFare\":8152.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1448.4,\"BaseFareCal\":8236.9,\"BaseFare\":6904,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":357,\"MFT\":5.4,\"OT\":856,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"221\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"913\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"localFromDateTime\":\"2021-03-19 16:40\",\"localToDateTime\":\"2021-03-19 20:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102300059832\",\"partnerId\":\"0\",\"amount\":8152.4,\"markup\":200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-19T13:58:54.719\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26075\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"7177\",\"eT\":\"737\"},\"stops\":1,\"so\":[{\"id\":5581,\"code\":\"GWL\",\"name\":\"Gwalior Airport\",\"cityCode\":\"GWL\",\"city\":\"Gwalior\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":0}],\"duration\":215,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-19T16:40\",\"at\":\"2021-03-19T20:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"26076\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"790\",\"eT\":\"737\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T15:25\",\"at\":\"2021-03-25T17:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"O8D2PP\",\"BOM-DEL\":\"O8D2PP\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1448.4,\"IGST\":5.4,\"NF\":8152.4,\"BF\":6904,\"TF\":8352.4},\"afC\":{\"TAF\":{\"MF\":30,\"OT\":856,\"MFT\":5.4,\"MU\":200,\"YQ\":0,\"AGST\":357}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4334824.59}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222552\",\"TPSysId\":\"222553\",\"VersionId\":[],\"CustomerSysId\":\"104941\",\"TrxId\":\"7776\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000075032','','',NULL,NULL,'0','2021-03-19 08:28:19','2021-03-19 08:28:19','','','','','','','5300059834','{\"bookingId\":\"TJS102300059832\",\"trips\":[{\"src\":\"DEL\",\"dest\":\"BOM\",\"departureDate\":\"2021-03-19T16:40\",\"flightNumbers\":[\"7177\"],\"airlines\":[\"SG\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":3518.7,\"refundAmount\":453,\"totalFare\":3971.7}}},{\"src\":\"BOM\",\"dest\":\"DEL\",\"departureDate\":\"2021-03-25T15:25\",\"flightNumbers\":[\"790\"],\"airlines\":[\"SG\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":3016.7,\"refundAmount\":1164,\"totalFare\":4180.7}}}],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":[]}','1',NULL,NULL,NULL,NULL,NULL,NULL),(386,385,367,5293,0,0,'O8D2PP-O8D2PP','2021-03-25','TJS102300059832',NULL,'SG-790','SpiceJet','1',1,'4-1771034981_1BOMDELSG790_28573462502957050',463,'15:25:00','17:30:00',0,'RS',125,'2h 5m',7701,18676,'BOM','DEL','Non-stop',1,1,4457.7,'4-1771034981_1BOMDELSG790_28573462502957050',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/SG.gif','INR',3520,760.7,0,461,0,15,4457.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,6,'0',0,'{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-790\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-03-25T15:25\",\"LocalFromTime\":\"2021-03-25 15:25\",\"FromUTCTime\":\"2021-03-25T15:25\",\"LocalToTime\":\"2021-03-25 17:30\",\"ToUTCTime\":\"2021-03-25T17:30\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4280.7,\"PublishedFareTxt\":\"4,281\",\"ApiResultIndex\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3520,\"Tax\":760.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4280.7,\"PublishedFare\":4457.7,\"OfferedFare\":4180.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":760.7,\"BaseFareCal\":4222.95,\"BaseFare\":3520,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":182,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4457.7,\"CostToCustomer\":4457.7,\"BaseFareCal\":4222.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4222.95,\"intOfferedFare\":4180.7,\"intPublishFare\":4280.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"913\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"JNML\",\"Price\":350,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFVG\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFNV\",\"Price\":350,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"DNVL\",\"Price\":350,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"DBML\",\"Price\":350,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS102300059832\",\"partnerId\":\"0\",\"amount\":8152.4,\"markup\":200,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-19T13:58:54.719\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26075\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"7177\",\"eT\":\"737\"},\"stops\":1,\"so\":[{\"id\":5581,\"code\":\"GWL\",\"name\":\"Gwalior Airport\",\"cityCode\":\"GWL\",\"city\":\"Gwalior\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":0}],\"duration\":215,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-19T16:40\",\"at\":\"2021-03-19T20:15\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"26076\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"790\",\"eT\":\"737\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1C\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-25T15:25\",\"at\":\"2021-03-25T17:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"O8D2PP\",\"BOM-DEL\":\"O8D2PP\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1448.4,\"IGST\":5.4,\"NF\":8152.4,\"BF\":6904,\"TF\":8352.4},\"afC\":{\"TAF\":{\"MF\":30,\"OT\":856,\"MFT\":5.4,\"MU\":200,\"YQ\":0,\"AGST\":357}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4334824.59}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222552\",\"TPSysId\":\"222553\",\"VersionId\":[],\"CustomerSysId\":\"104941\",\"TrxId\":\"7776\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000075032','','',NULL,NULL,'0','2021-03-19 08:28:19','2021-03-19 08:28:19','','','','','','','5300059834','{\"bookingId\":\"TJS102300059832\",\"trips\":[{\"src\":\"DEL\",\"dest\":\"BOM\",\"departureDate\":\"2021-03-19T16:40\",\"flightNumbers\":[\"7177\"],\"airlines\":[\"SG\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":3518.7,\"refundAmount\":453,\"totalFare\":3971.7}}},{\"src\":\"BOM\",\"dest\":\"DEL\",\"departureDate\":\"2021-03-25T15:25\",\"flightNumbers\":[\"790\"],\"airlines\":[\"SG\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":3016.7,\"refundAmount\":1164,\"totalFare\":4180.7}}}],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":[]}','1',NULL,NULL,NULL,NULL,NULL,NULL),(387,0,62,5293,0,0,'TESTPNR-TESTPNR','2021-03-19','TJS107000059877',NULL,'UK-981','Vistara','',1,'10-4222073085_0DELBOMUK981_28584842514009237',539,'21:20:00','23:30:00',0,'K',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',3,1,13552.1,'10-4222073085_0DELBOMUK981_28584842514009237',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/UK.gif','INR',10990,2031.1,0,716,0,45,13552.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"UK-981\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:30\",\"TravelDate\":\"2021-03-19T21:20\",\"LocalFromTime\":\"2021-03-19 21:20\",\"FromUTCTime\":\"2021-03-19T21:20\",\"LocalToTime\":\"2021-03-19 23:30\",\"ToUTCTime\":\"2021-03-19T23:30\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13021.1,\"PublishedFareTxt\":\"13,021\",\"ApiResultIndex\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10990,\"Tax\":2031.1000000000001,\"YQTax\":0,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":572,\"CarrierMiscFee\":390,\"MUFee\":300,\"intPublishedFare\":13021.1,\"PublishedFare\":13552.1,\"OfferedFare\":12721.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":856.7,\"BaseFareCal\":5668.95,\"BaseFare\":4870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":251,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":856.7,\"BaseFareCal\":5668.95,\"BaseFare\":4870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":251,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":1509.95,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":70,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":13552.1,\"CostToCustomer\":13552.1,\"BaseFareCal\":12847.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":12847.86,\"intOfferedFare\":12721.1,\"intPublishFare\":13021.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"590\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:30\",\"SegFlightNumber\":\"UK-981\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"UK-981\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:30\",\"TravelDate\":\"2021-03-19T21:20\",\"LocalFromTime\":\"2021-03-19 21:20\",\"FromUTCTime\":\"2021-03-19T21:20\",\"LocalToTime\":\"2021-03-19 23:30\",\"ToUTCTime\":\"2021-03-19T23:30\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":20744.2,\"ApiResultIndex\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17250,\"Tax\":3494.2000000000003,\"YQTax\":0,\"OtherCharges\":1578,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":820,\"CarrierMiscFee\":390,\"MUFee\":600,\"intPublishedFare\":20744.2,\"PublishedFare\":21806.2,\"OfferedFare\":20144.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":900,\"GSTOnMarkUp\":162,\"CommEarned\":1408.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1529.4,\"BaseFareCal\":8663.9,\"BaseFare\":7250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":375,\"MFT\":5.4,\"OT\":789,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1529.4,\"BaseFareCal\":8663.9,\"BaseFare\":7250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":375,\"MFT\":5.4,\"OT\":789,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":435.4,\"BaseFareCal\":3069.9,\"BaseFare\":2750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":70,\"MFT\":5.4,\"OT\":0,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"590\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:30\",\"SegFlightNumber\":\"UK-981\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],[{\"segmentid\":\"999\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"localFromDateTime\":\"2021-03-19 21:20\",\"localToDateTime\":\"2021-03-19 23:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS107000059877\",\"partnerId\":\"0\",\"amount\":20144.2,\"markup\":600,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-19T17:09:27.564\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26084\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"981\",\"eT\":\"320\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-19T21:20\",\"at\":\"2021-03-19T23:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"26085\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2174\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-27T21:15\",\"at\":\"2021-03-27T23:20\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"kumar\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"RAvi\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"Lala\",\"lN\":\"kaka\",\"dob\":\"2020-03-10\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":3494.2,\"IGST\":16.2,\"NF\":20144.2,\"BF\":17250,\"TF\":20744.2},\"afC\":{\"TAF\":{\"MF\":90,\"OT\":1578,\"MFT\":16.2,\"MU\":600,\"YQ\":0,\"YR\":390,\"AGST\":820}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4202377.29}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222664\",\"TPSysId\":\"222665\",\"VersionId\":[\"27099\",\"27100\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7783\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000075209','','',NULL,NULL,'0','2021-03-19 11:38:46','2021-03-19 11:38:46','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(388,387,62,5293,0,0,'TESTPNR-TESTPNR','2021-03-27','TJS107000059877',NULL,'6E-2174','IndiGo','1',1,'5-4222073085_1BOMDEL6E2174_28584844639908630',267,'21:15:00','23:20:00',0,'T',125,'2h 5m',7701,18676,'BOM','DEL','Non-stop',3,1,8254.1,'5-4222073085_1BOMDEL6E2174_28584844639908630',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',6260,1463.1,0,862,0,45,8254.1,704.24,0,254.24,81,0,0,0,0,0,0,0,NULL,1,'0',0,'{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"6E-2174\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:15\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2021-03-27T21:15\",\"LocalFromTime\":\"2021-03-27 21:15\",\"FromUTCTime\":\"2021-03-27T21:15\",\"LocalToTime\":\"2021-03-27 23:20\",\"ToUTCTime\":\"2021-03-27T23:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 27 Mar\",\"ArrivalDateTxt\":\"Sat, 27 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7723.099999999999,\"PublishedFareTxt\":\"7,723\",\"ApiResultIndex\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6260,\"Tax\":1463.1000000000001,\"YQTax\":0,\"OtherCharges\":862,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":248,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7723.099999999999,\"PublishedFare\":8254.1,\"OfferedFare\":7423.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":672.7,\"BaseFareCal\":2994.95,\"BaseFare\":2380,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":672.7,\"BaseFareCal\":2994.95,\"BaseFare\":2380,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":8254.1,\"CostToCustomer\":8254.1,\"BaseFareCal\":7549.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":7549.86,\"intOfferedFare\":7423.099999999999,\"intPublishFare\":7723.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"999\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJS107000059877\",\"partnerId\":\"0\",\"amount\":20144.2,\"markup\":600,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"+919695357709\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-19T17:09:27.564\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"26084\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"981\",\"eT\":\"320\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-19T21:20\",\"at\":\"2021-03-19T23:30\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]},{\"sI\":[{\"id\":\"26085\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2174\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-27T21:15\",\"at\":\"2021-03-27T23:20\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"RETURN\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"kumar\",\"userProfile\":[],\"id\":1},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"RAvi\",\"lN\":\"Kumar\",\"userProfile\":[],\"id\":2},{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\",\"BOM-DEL\":\"TESTPNR\"},\"ticketNumberDetails\":{\"DEL-BOM\":\"11111111111\"},\"ti\":\"Master\",\"pt\":\"INFANT\",\"fN\":\"Lala\",\"lN\":\"kaka\",\"dob\":\"2020-03-10\",\"userProfile\":[],\"id\":3}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":3494.2,\"IGST\":16.2,\"NF\":20144.2,\"BF\":17250,\"TF\":20744.2},\"afC\":{\"TAF\":{\"MF\":90,\"OT\":1578,\"MFT\":16.2,\"MU\":600,\"YQ\":0,\"YR\":390,\"AGST\":820}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":4202377.29}}}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222664\",\"TPSysId\":\"222665\",\"VersionId\":[\"27099\",\"27100\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7783\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,'11000000075209','','',NULL,NULL,'0','2021-03-19 11:38:46','2021-03-19 11:38:46','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(389,0,371,5293,0,0,NULL,'2021-03-19',NULL,NULL,'6E-2077','IndiGo','1',1,'5-2514125537_0DELBOM6E2077_28585352341976144',267,'22:30:00','00:50:00',0,'M',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',1,1,5901.7,'5-2514125537_0DELBOM6E2077_28585352341976144',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,824.7,0,457,0,15,5901.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 11:46:28','2021-03-19 11:46:28','09AACCM8579M1ZL','catpl','deepak@catpl.co.in','9695357709','noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(390,389,371,5293,0,0,NULL,'2021-03-27',NULL,NULL,'6E-2174','IndiGo','1',1,'5-2514125537_20BOMDEL6E2174_28585352288983205',267,'21:15:00','23:20:00',0,'T',125,'2h 5m',7701,18676,'BOM','DEL','Non-stop',1,1,3229.7,'5-2514125537_20BOMDEL6E2174_28585352288983205',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2380,672.7,0,431,0,15,3229.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 11:46:28','2021-03-19 11:46:28','09AACCM8579M1ZL','catpl','deepak@catpl.co.in','9695357709','noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(391,0,62,5293,0,0,NULL,'2021-03-19',NULL,NULL,'6E-2077','IndiGo','1',1,'5-5995704032_0DELBOM6E2077_28591238883643781',267,'22:30:00','00:50:00',0,'M',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',1,1,5901.7,'5-5995704032_0DELBOM6E2077_28591238883643781',1,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',4900,824.7,0,457,0,15,5901.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 13:24:36','2021-03-19 13:24:36','09AACCM8579M1ZL','Catpl','deepak@catpl.co.in','9695357709','Noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(392,391,62,5293,0,0,NULL,'2021-03-31',NULL,NULL,'6E-918','IndiGo','1',1,'5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386',267,'11:10:00','16:10:00',0,'M',300,'5h 0m',7701,18676,'BOM','DEL','1 Stop(s)',1,1,3177.7,'5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386',2,2,0,'http://ineedtrip.hellogtx.com/public/upload/AirlineLogo/6E.gif','INR',2280,720.7,0,481,0,15,3177.7,234.75,0,84.75,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 13:24:36','2021-03-19 13:24:36','09AACCM8579M1ZL','Catpl','deepak@catpl.co.in','9695357709','Noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(393,0,372,5293,0,0,NULL,'2021-05-03',NULL,NULL,'AI-9691','Air India','',1,'15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784',42,'11:50:00','15:20:00',0,'U',210,'3h 30m',7701,3212,'DEL','PAB','1 Stop(s)',1,1,4230.83,'15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784',1,1,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/AI.gif','INR',3300,811,0,358,0,21.19,4230.83,156.35,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,2,'0','','',NULL,NULL,'0','2021-03-19 13:43:48','2021-03-19 13:43:48','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(394,0,62,5293,0,0,NULL,'2021-03-19',NULL,NULL,'6E-2068','IndiGo','1',1,'5-3082819678_1DELBOM6E2068_326964066076218',267,'21:00:00','23:05:00',0,'M',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',1,1,5775.04,'5-3082819678_1DELBOM6E2068_326964066076218',1,1,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',4900,732,0,457,0,21.19,5775.04,153.77,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-19 13:48:58','2021-03-19 13:48:58','09AACCM8579M1ZL','catpl','deepak@catpl.co.in','9695357709','noida','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(395,0,102,5293,0,0,NULL,'2021-04-13',NULL,NULL,'SG-8723','SpiceJet','1',1,'4-2301243350_1DELBOMSG8723_38951715837960',463,'08:50:00','11:00:00',0,'DD',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,2684.79,'4-2301243350_1DELBOMSG8723_38951715837960',1,1,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',1927,610,0,483,0,21.19,2684.79,153.25,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,2,'0','','',NULL,NULL,'0','2021-03-19 14:21:12','2021-03-19 14:21:12','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(396,0,373,5293,0,0,NULL,'2021-03-22',NULL,NULL,'AI-537','Air India','',1,'15-2537786393_33DELBOMAI537_10706474644999',42,'17:00:00','19:15:00',0,'S',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',1,1,4727.31,'15-2537786393_33DELBOMAI537_10706474644999',1,2,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/AI.gif','INR',3930,758,0,358,0,21.19,4727.31,165.3,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 05:31:08','2021-03-22 05:31:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(397,396,373,5293,0,0,NULL,'2021-03-26',NULL,NULL,'G8-351','Go Air','1',1,'1-2537786393_8BOMPATG8351PATDELG8507_10700483318707',240,'14:30:00','20:40:00',0,'GS',370,'6h 10m',7701,18676,'BOM','DEL','1 Stop(s)',1,1,5566.2,'1-2537786393_8BOMPATG8351PATDELG8507_10700483318707',2,2,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/G8.gif','INR',3769,1837,1100,462,0,21.19,5566.2,174.09,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 05:31:08','2021-03-22 05:31:08','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(398,0,374,5293,0,0,NULL,'2021-03-23',NULL,NULL,'UK-955','Vistara','',1,'15-7186026392_0DELBOMUK955_557606851951809',539,'18:20:00','20:20:00',0,'K',120,'2h 0m',7701,18676,'DEL','BOM','Non-stop',1,1,5651.43,'15-7186026392_0DELBOMUK955_557606851951809',1,1,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/UK.gif','INR',4870,763,0,358,0,21.19,5651.43,167.62,0,0,27,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 05:58:30','2021-03-22 05:58:30','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(399,0,103,5293,0,0,NULL,'2021-04-05',NULL,NULL,'G8-194','Go Air','1',1,'1-2170632972_1DELGOIG8194_13657340435244',240,'20:15:00','23:05:00',0,'SP',170,'2h 50m',7701,0,'DEL','GOI','Non-stop',1,1,5054.52,'1-2170632972_1DELGOIG8194_13657340435244',1,2,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/G8.gif','INR',3639,1470,750,469,0,21.19,5054.52,54.48,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 06:22:28','2021-03-22 06:22:28','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(400,399,103,5293,0,0,NULL,'2021-04-08',NULL,NULL,'G8-195','Go Air','1',1,'1-2170632972_1GOIDELG8195_13657333012608',240,'23:35:00','02:20:00',0,'SP',165,'2h 45m',7701,0,'GOI','DEL','Non-stop',1,1,4979.35,'1-2170632972_1GOIDELG8195_13657333012608',2,2,0,'http://www.ineedtrip.com/public/upload/AirlineLogo/G8.gif','INR',3365,1666,750,679,0,21.19,4979.35,51.66,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 06:22:28','2021-03-22 06:22:28','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(401,0,62,5293,0,0,NULL,'2021-03-31',NULL,NULL,'SG-160','SpiceJet','1',1,'4-8817718147_12DELRKTSG160RKTDELSG161_14009553151933',0,'19:20:00','21:40:00',0,'XA',0,'3h 50m',7701,22605,'DEL','RKT','Non-stop',1,1,12804,'4-8817718147_12DELRKTSG160RKTDELSG161_14009553151933',1,1,1,'http://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',9224,3657,0,3287,0,42.38,12804,77.69,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 06:32:51','2021-03-22 06:32:51','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(402,401,62,5293,0,0,NULL,'2021-03-31',NULL,NULL,'SG-161','SpiceJet','1',1,'4-8817718147_12DELRKTSG160RKTDELSG161_14009553151933',0,'22:40:00','03:40:00',0,'XA',0,'3h 30m',22605,7701,'RKT','DEL','Non-stop',1,1,12804,'4-8817718147_12DELRKTSG160RKTDELSG161_14009553151933',2,1,1,'http://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',9224,3657,0,3287,0,42.38,12804,77.69,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 06:32:51','2021-03-22 06:32:51','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(403,0,104,5293,0,0,NULL,'2021-03-24',NULL,NULL,'6E-148','IndiGo','1',1,'5-9811598189_0DELBOM6E148_581579652574361',267,'05:05:00','07:10:00',0,'T',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',1,1,3860.59,'5-9811598189_0DELBOM6E148_581579652574361',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',3225,648,0,457,0,21.19,3860.59,12.42,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-22 12:22:46','2021-03-22 12:22:46','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(404,0,375,5293,0,0,NULL,'2021-04-16',NULL,NULL,'SG-8480','SpiceJet','1',1,'4-0633571651_11DELPATSG8480PATMAASG548_21619448367479',463,'15:10:00','23:00:00',0,'DD',470,'7h 50m',7701,6000,'DEL','MAA','1 Stop(s)',1,1,4147.62,'4-0633571651_11DELPATSG8480PATMAASG548_21619448367479',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',3489,688,0,483,0,21.19,4147.62,29.39,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-23 08:32:19','2021-03-23 08:32:19','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(405,0,29,5293,0,0,NULL,'2021-04-16',NULL,NULL,'SG-8480','SpiceJet','1',1,'4-8092327344_11DELPATSG8480PATMAASG548_26360272055119',463,'15:10:00','23:00:00',0,'DD',470,'7h 50m',7701,6000,'DEL','MAA','1 Stop(s)',1,1,4147.62,'4-8092327344_11DELPATSG8480PATMAASG548_26360272055119',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',3489,688,0,483,0,21.19,4147.62,29.39,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-23 09:51:17','2021-03-23 09:51:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(406,0,105,5293,0,0,NULL,'2021-03-28',NULL,NULL,'G8-300','Go Air','1',1,'1-7012619301_0DELGOIG8300_19403683051304',240,'08:40:00','11:30:00',0,'GS',170,'2h 50m',7701,0,'DEL','GOI','Non-stop',3,1,20453.6,'1-7012619301_0DELGOIG8300_19403683051304',1,2,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/G8.gif','INR',16017,4662,2250,1407,0,63.57,20453.6,225.41,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-25 08:24:16','2021-03-25 08:24:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(407,406,105,5293,0,0,NULL,'2021-04-02',NULL,NULL,'6E-5178','IndiGo','1',1,'5-7012619301_23GOIDEL6E5178_19405731714857',267,'22:05:00','00:45:00',0,'T',160,'2h 40m',7701,0,'GOI','DEL','Non-stop',3,1,14578.79,'5-7012619301_23GOIDEL6E5178_19405731714857',2,2,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',12003,2622,0,1932,0,63.57,14578.79,46.22,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-25 08:24:16','2021-03-25 08:24:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(408,0,106,5293,0,0,NULL,'2021-03-28',NULL,NULL,'G8-300','Go Air','1',1,'1-7012619301_0DELGOIG8300_19403683051304',240,'08:40:00','11:30:00',0,'GS',170,'2h 50m',7701,0,'DEL','GOI','Non-stop',3,1,20453.6,'1-7012619301_0DELGOIG8300_19403683051304',1,2,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/G8.gif','INR',16017,4662,2250,1407,0,63.57,20453.6,225.41,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,2,'0','','',NULL,NULL,'0','2021-03-25 08:24:55','2021-03-25 08:24:55','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(409,408,106,5293,0,0,NULL,'2021-04-02',NULL,NULL,'6E-5178','IndiGo','1',1,'5-7012619301_23GOIDEL6E5178_19405731714857',267,'22:05:00','00:45:00',0,'T',160,'2h 40m',7701,0,'GOI','DEL','Non-stop',3,1,14578.79,'5-7012619301_23GOIDEL6E5178_19405731714857',2,2,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',12003,2622,0,1932,0,63.57,14578.79,46.22,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,2,'0','','',NULL,NULL,'0','2021-03-25 08:24:55','2021-03-25 08:24:55','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(410,0,380,5293,0,0,NULL,'2021-04-21',NULL,NULL,'SG-8723','SpiceJet','1',1,'4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962',463,'08:50:00','17:05:00',0,'RS',495,'8h 15m',7701,0,'DEL','GOI','1 Stop(s)',1,1,4406.52,'4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/SG.gif','INR',3738,700,0,483,0,21.19,4406.52,31.49,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-25 10:28:40','2021-03-25 10:28:40','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(411,0,80,5293,0,0,NULL,'2021-03-26',NULL,NULL,'6E-749','IndiGo','1',1,'5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794',267,'15:35:00','20:20:00',0,'T',285,'4h 45m',18676,7701,'BOM','DEL','1 Stop(s)',1,1,4977.57,'5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',4267,727,0,481,0,21.19,4977.57,16.43,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-26 05:35:04','2021-03-26 05:35:04','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(412,0,107,5293,0,0,NULL,'2021-03-27',NULL,NULL,'EY-5417','Etihad Airways','',0,'21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990',210,'13:45:00','01:25:00',0,'U',610,'11h 40m',8219,6000,'XNB','MAA','1 Stop(s)',1,1,10291.96,'21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990',1,1,1,'https://www.ineedtrip.com/public/upload/AirlineLogo/EY.gif','INR',6155,4678,2188,2385,0,21.19,10291.96,541.04,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-26 10:14:41','2021-03-26 10:14:41','','','','','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(413,0,108,5293,0,0,NULL,'2021-07-03',NULL,NULL,'6E-5051','IndiGo','1',1,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',267,'07:40:00','14:10:00',0,'M',390,'6h 30m',7701,0,'DEL','GOI','1 Stop(s)',4,1,15981.14,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',1,1,0,'https://www.ineedtrip.com/public/upload/AirlineLogo/6E.gif','INR',13212,2820,0,2028,0,84.76,15981.14,50.86,0,0,0,0,0,0,0,0,0,0,NULL,0,'0',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0','2021-03-27 14:05:51','2021-03-27 14:05:51','09AAUPF5809N2ZX','Samar Enterprises','samarenterprises@gmail.com','8874249264','Fatehnagar Ward Lar Town','Uttar Pradesh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!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` varchar(150) NOT NULL,
`BookingId` varchar(200) DEFAULT NULL,
`APIBookingId` varchar(200) DEFAULT NULL,
`PNR_Number` varchar(200) DEFAULT NULL,
`TicketId` varchar(100) DEFAULT NULL,
`TicketNumber` varchar(100) 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,
`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',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=770 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 */;
INSERT INTO `tbl_flight_booking_customer` VALUES (567,0,49,'5-9255944805_0DELBOM6E5379_26770621706843463',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',3,0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-02-26',0,'0','1',NULL,NULL,NULL,'0'),(568,0,226,'5-9255944805_0DELBOM6E5379_26770621706843463',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',3,0,'0','9634022688','surbhi','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-02-26',0,'0','1',NULL,NULL,NULL,'0'),(569,0,227,'10-8942455031_0DELDXBAI1929DXBDELAI916_26770757970793220',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,'1954-02-17','12345','IN','2022-02-15',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2021-02-26',0,'0','1',NULL,NULL,NULL,'0'),(570,0,88,'5-3884445213_35DELBOM6E665_27274788804552042',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',3,0,'0','9643022688','muskan','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-04',0,'0','1',NULL,NULL,NULL,'0'),(571,0,62,'10-4351799974_12DELBOMH19442_27699110326595530','TJS107900057504',NULL,'TESTPNR','TESTPNR','11111111111','DEL-BOM',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'1PC','7Kg',NULL,NULL,NULL,'2021-03-09',0,'0','1',NULL,NULL,NULL,'0'),(572,0,228,'10-4351799974_12DELBOMH19442_27699110326595530','TJS107900057504',NULL,'TESTPNR','TESTPNR','11111111111','DEL-BOM',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Vivek','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-09',0,'0','1',NULL,NULL,NULL,'0'),(573,0,32,'5-6998295847_26DELBOM6E5379_27722677486581805',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',2,0,'0','9634022688','surbhi','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-09',0,'0','1',NULL,NULL,NULL,'0'),(574,0,229,'5-6998295847_26DELBOM6E5379_27722677486581805',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',3,0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-09',0,'0','1',NULL,NULL,NULL,'0'),(575,0,226,'5-6998295847_26DELBOM6E5379_27722677486581805',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',1,0,'other','9634022688','surbhi','gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-09',0,'0','1',NULL,NULL,NULL,'0'),(576,0,89,'5-7650331241_3DELBOM6E2173_27889207689940875',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'mangal@catpl.co.in',1,0,'0','7727052691','Mangal','katiyar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-11',0,'0','1',NULL,NULL,NULL,'0'),(577,0,90,'5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006','TJS109000058273',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-AMD-AMD-BOM',0,5293,0,'mangal@catpl.co.in',1,0,'0','7727052631','mangal','katiyar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-11',0,'0','1',NULL,NULL,NULL,'0'),(578,0,230,'5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-12',0,'0','1',NULL,NULL,NULL,'0'),(579,0,91,'5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609','TJS108400058483',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','GOP-CCU-CCU-LKO',0,5293,0,'deepak@catpl.co.in',1,0,'0','96953657709','Deepak','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-12',0,'0','1',NULL,NULL,NULL,'0'),(580,306,93,'abfb1-42396-789f8-fea42','DMC101900058577','TJS101900058577','TESTPNR','TESTPNR','','DEL-BOM',0,5642,0,'sibo.sarso@gmail.com',1,0,'0','8447455883','md','sabir','',0,5642,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-12',0,'0','1',NULL,NULL,NULL,'0'),(581,0,232,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598','TJS114700058929',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','11111111111-11111111111-11111111111-11111111111','DEL-AUH-AUH-XNB',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','A1','K1','',0,5293,'1946-03-17','hfdfe1234','IN','2022-09-22',NULL,NULL,'','','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0KG','7Kg',NULL,NULL,NULL,'2021-03-15',0,'0','1',NULL,NULL,NULL,'0'),(582,0,233,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598','TJS114700058929',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','11111111111-11111111111-11111111111-11111111111','DEL-AUH-AUH-XNB',0,5293,0,'deepak@catpl.co.in',1,0,'other','9695357709','C1','K1','',0,5293,'2011-03-09','gsdh5285','IN','2023-03-14',NULL,NULL,'','','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0KG','7Kg',NULL,NULL,NULL,'2021-03-15',0,'0','1',NULL,NULL,NULL,'0'),(583,0,234,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598','TJS114700058929',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','11111111111-11111111111-11111111111-11111111111','DEL-AUH-AUH-XNB',0,5293,0,'deepak@catpl.co.in',2,0,'other','9695357709','I1','K1','',0,5293,'2020-03-12','ikdt','IN','2024-03-19',NULL,NULL,'','','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'10KG','0Kg',NULL,NULL,NULL,'2021-03-15',0,'0','1',NULL,NULL,NULL,'0'),(584,0,62,'10-1623845962_18DELAUHEY211AUHXNBEY5418_28234834388297727',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,'1946-03-18','er','IR','2023-03-22',NULL,NULL,'','','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0KG','7Kg',NULL,NULL,NULL,'2021-03-15',0,'0','1',NULL,NULL,NULL,'0'),(585,0,29,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,'1960-03-10','kjioplkio','IN','2024-03-21',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(586,0,235,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Ranu','Banerjee','',0,5293,'1960-03-10','kjhjkhkjhkjhkj','IN','2022-03-18',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(587,0,236,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'other','9818999760','Parth','Banerjee','',0,5293,'2014-03-07','jhkjhjkhkjhkjhkj','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(588,0,237,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'other','9818999760','Kritika','Bhattacharaya','',0,5293,'2013-03-08','olkiolki','IN','2027-03-11',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(589,0,238,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'other','9818999760','Kaira','Thakur','',0,5293,'2020-03-12','uuiuiuiiui','IN','2028-03-24',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(590,0,239,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','TJS114000059229',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','BLR-BOM-BOM-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'other','9818999760','Dhruv','Banerjee','',0,5293,'2020-03-19','qwertyuio','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(591,0,246,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(592,0,247,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','baibhav','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(593,0,248,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','manish','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(594,0,249,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'other','8585960381','ahsda','asad','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(595,0,250,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'other','8585960381','safdsadf','sdaD','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(596,0,251,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'other','8585960381','SAFDASF','SADFSADFASF','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(597,0,252,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'other','8585960381','ASDFASF','AFDSADDFSA','',0,5293,'2021-03-03',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(598,0,253,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'other','8585960381','ASDASF','FSADFSA','',0,5293,'2021-03-02',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(599,0,254,'5-0353392758_11DELBOM6E2077_28328102504599478','TJS107300059280',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'other','8585960381','SASDF','ADasda','',0,5293,'2021-03-08',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(600,0,29,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,'1960-03-10','kjioplkio','IN','2024-03-21',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(601,0,235,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Ranu','Banerjee','',0,5293,'1960-03-10','kjhjkhkjhkjhkj','IN','2022-03-18',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(602,0,236,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Parth','Banerjee','',0,5293,'2014-03-07','jhkjhjkhkjhkjhkj','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(603,0,237,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Kritika','Bhattacharaya','',0,5293,'2013-03-08','olkiolki','IN','2027-03-11',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(604,0,238,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Kaira','Thakur','',0,5293,'2020-03-12','uuiuiuiiui','IN','2028-03-24',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(605,0,239,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Dhruv','Banerjee','',0,5293,'2020-03-19','qwertyuio','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(606,0,29,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,'1960-03-10','kjioplkio','IN','2024-03-21',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(607,0,235,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Ranu','Banerjee','',0,5293,'1960-03-10','kjhjkhkjhkjhkj','IN','2022-03-18',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(608,0,236,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Parth','Banerjee','',0,5293,'2014-03-07','jhkjhjkhkjhkjhkj','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(609,0,237,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Kritika','Bhattacharaya','',0,5293,'2013-03-08','olkiolki','IN','2027-03-11',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(610,0,238,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Kaira','Thakur','',0,5293,'2020-03-12','uuiuiuiiui','IN','2028-03-24',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(611,0,239,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','TJS113200059297',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','BLR-DXB',0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Dhruv','Banerjee','',0,5293,'2020-03-19','qwertyuio','IN','2023-03-30',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-16',0,'0','1',NULL,NULL,NULL,'0'),(612,0,259,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','Ganesh','catpl','',0,5293,'1957-03-20','12345678','IN','2025-03-17',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(613,0,260,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','baibhav','catpl','',0,5293,'1957-03-20','65412378','IN','2024-03-26',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(614,0,261,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','vivek','catpl','',0,5293,'2013-03-12','axxxibbbb45','IN','2025-03-19',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(615,0,262,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','sanjit','catpl','',0,5293,'2015-03-24','3698745112','IN','2022-03-29',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(616,0,263,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','sabir','catpl','',0,5293,'2020-03-12','sdfasfdasf545487','IN','2026-03-11',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(617,0,264,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','TJS115300059309',NULL,'JYIRNW-JYIRNW','JYIRNW-JYIRNW','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','asdfasfd','asfasdf','',0,5293,'2020-03-18','sdfsfasdfasf545','IN','2023-03-21',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(618,0,292,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','Ganesh','Ctapl','',0,5293,'1953-03-25','789654123','IN','2025-03-26',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(619,0,293,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','deepk','catpl','',0,5293,'1953-03-25','SDADAD4654DF','IN','2028-03-28',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(620,0,294,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','DFGDSG','SDFFGDFD','',0,5293,'2018-03-21','DSFGDSG797','IN','2027-03-31',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(621,0,295,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','SANNY','CATPL','',0,5293,'2018-03-21','DDASFASF975','IN','2026-03-24',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(622,0,296,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','VIVEK','CATPL','',0,5293,'2020-03-25','SAFDSSADF9897SD','IN','2024-03-05',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(623,0,297,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','TJS114900059312',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','DEL-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','AFDSF','SADFSA','',0,5293,'2020-03-17','SADFSAF454','IN','2029-03-21',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(624,0,300,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','Ganesh','Catpl','',0,5293,'1949-03-02','45997987fdf','IN','2024-03-28',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(625,0,301,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','vivek','catpl','',0,5293,'1949-03-02','sadfsf5445','IN','2026-03-19',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(626,0,302,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','DSFGSD','DFGDS','',0,5293,'2018-03-14','DSFGDS4564','IN','2027-03-23',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(627,0,303,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','DSFGDSG','DFGDSG','',0,5293,'2017-03-28','SAFASFFS879','IN','2022-03-08',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(628,0,304,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','SAFASFD','SFDASF','',0,5293,'2020-03-18','FASFD7987','IN','2027-03-24',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(629,0,305,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','TJS116500059317',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','SADFASFERT','WERTBNB','',0,5293,'2020-03-10','SADFASF455','IN','2023-03-21',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(630,0,310,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',1,0,'0','8585960381','GANESH','CATPL','',0,5293,'1961-03-16','AFSAFDSF','IN','2023-03-22',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(631,0,311,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',1,0,'0','8585960381','SAFSAFDA','SDFSAF','',0,5293,'1961-03-16','SDFSAFS','IN','2026-03-24',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(632,0,312,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',2,0,'0','8585960381','ASDFAS','SDFSFGG','',0,5293,'2017-03-22','78964521','IN','2024-03-27',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(633,0,313,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',2,0,'0','8585960381','Deepak','Catpl','',0,5293,'2018-03-20','sdfsadf545','IN','2025-03-25',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(634,0,314,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',2,0,'0','8585960381','asfsafd','sdfsaf','',0,5293,'2020-03-17','sadfsadf5465','IN','2025-03-12',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(635,0,315,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','TJS111000059319',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'GANESH@CATPL.CO.IN',2,0,'0','8585960381','sdfasfsdc','asdfasfsf','',0,5293,'2020-03-24','dfgdsg455df','IN','2028-03-22',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(636,0,319,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','vivek','catl','',0,5293,'1957-03-22','safsf456487sdf','IN','2025-03-05',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(637,0,320,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','asfsaf','safsafs','',0,5293,'1957-03-22','sadfsafs','IN','2024-03-06',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(638,0,321,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','asfdasfdsa','safsafs','',0,5293,'2019-03-13','safdsaf5456','IN','2021-03-31',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(639,0,322,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','afsafdsf','sfdsaf','',0,5293,'2019-03-07','fss4sfsdfsfs','IN','2027-03-31',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(640,0,323,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','dsfgfsdfg','dfgdsgfd','',0,5293,'2020-03-19','dsfgsdfgd54','IN','2028-03-29',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(641,0,324,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','dsfgsdg','dsfgsdfg','',0,5293,'2020-03-18','asfasf54','IN','2024-03-28',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(642,0,94,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','85859603841','ganesh','catpl','',0,5293,'1956-03-22','sadfsa789','IN','2022-03-16',NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(643,0,325,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','85859603841','sadfas','sdfsaf','',0,5293,'1956-03-22','asdfasfs','IN','2024-03-20',NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(644,0,326,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','85859603841','sdfsa','sadfsa','',0,5293,'2018-03-21','sadfasfa','IN','2024-03-19',NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(645,0,327,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','85859603841','sadfsaf','sdfsaf','',0,5293,'2015-03-04','sadfsadf465','IN','2026-03-25',NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(646,0,328,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',2,0,'0','85859603841','sadfasf','sadfsaf','',0,5293,'2020-03-18','sadfasf','IN','2026-03-11',NULL,NULL,'','0','',3,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(647,0,329,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',2,0,'0','85859603841','asdfasf','sadfasf','',0,5293,'2020-03-12','dsfgdg456dfg','IN','2028-03-22',NULL,NULL,'','0','',3,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(648,0,330,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','sfdsaf','sdfsdf','',0,5293,'1946-03-24','sadfasdfsa','IN','2027-03-24',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(649,0,227,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,'1954-02-17','12345','IN','2022-02-15',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(650,0,295,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','SANNY','CATPL','',0,5293,'2018-03-21','DDASFASF975','IN','2026-03-24',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(651,0,285,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','shivam','catpl','',0,5293,'2016-03-22','aDSasdadds554','IN','2030-03-26',NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(652,0,305,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','SADFASFERT','WERTBNB','',0,5293,'2020-03-10','SADFASF455','IN','2023-03-21',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(653,0,304,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','TJS110200059323',NULL,'TESTPNR-TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR-TESTPNR','','DEL-BOM-BOM-DXB',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','SAFASFD','SFDASF','',0,5293,'2020-03-18','FASFD7987','IN','2027-03-24',NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(654,0,62,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,'1946-03-18','er','IN','2021-06-15',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(655,0,233,'5-5539632010_22DELDXB6E23DXBBOM6E62BOMDEL6E2036_28399844288848374',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','C1','K1','',0,5293,'2020-03-25','gsdh5285','IN','2023-03-14',NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(656,0,29,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,'1960-03-10','kjioplkio','IN','2024-03-21',NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(657,0,29,'5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(658,0,332,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,'1993-03-17','hhiljlj111','IN','2021-03-26',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(659,0,333,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','AB','Kumari','',0,5293,'2020-03-24','khjl4142','IN','2020-03-25',NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(660,0,62,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,'1946-03-18','er','HU','2021-06-15',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(661,0,333,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','AB','Kumari','',0,5293,'2020-03-24','khjl4142','IN','2020-03-25',NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(662,0,334,'5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(663,0,62,'5-1750014313_1DELBOM6E148_28420104463411940',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(664,0,228,'5-1750014313_1DELBOM6E148_28420104463411940',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Vivek','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(665,0,333,'5-1750014313_1DELBOM6E148_28420104463411940',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','AB','Kumari','',0,5293,'2020-03-24',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(666,0,335,'4-1451484141_0DELBOMSG8701_38041253729840',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(667,0,336,'5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697','TJS105100059478',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-HYD-HYD-BOM',0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-17',0,'0','1',NULL,NULL,NULL,'0'),(668,0,62,'5-8880269668_10DELBOM6E5012_28476297120582197','TJS107700059504',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat','8300059507',NULL,'6','2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(671,0,339,'4-8374846984_3DELBOMSG2871_28477589167138567',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'anuradha@catpl.co.in',3,0,'0','9997534969','Annu','saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(672,0,62,'5-8005025951_25DELBOM6E171_28478515803680618','TJS108700059523',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','BOM-JDH-JDH-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(673,0,340,'5-8005025951_25DELBOM6E171_28478515803680618','TJS108700059523',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','BOM-JDH-JDH-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','C1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(674,0,341,'5-8005025951_25DELBOM6E171_28478515803680618','TJS108700059523',NULL,'TESTPNR-TESTPNR-TESTPNR','TESTPNR-TESTPNR-TESTPNR','','BOM-JDH-JDH-DEL',0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','I1','K1','',0,5293,'2020-03-19',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(675,0,62,'5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(676,0,340,'5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','C1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(677,0,341,'5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','I1','K1','',0,5293,'2020-03-19',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(678,0,62,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411','TJS109200059563',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-BLR-BLR-MAA',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(679,0,342,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411','TJS109200059563',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-BLR-BLR-MAA',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','C2','K2','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(680,0,343,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411','TJS109200059563',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-BLR-BLR-MAA',0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','I2','K2','',0,5293,'2020-03-11',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(681,0,29,'5-6767111056_16DELBLR6E2027BLRMAA6E543_28485687542690192',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(682,0,235,'5-6767111056_16DELBLR6E2027BLRMAA6E543_28485687542690192',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Ranu','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(683,0,236,'5-6767111056_16DELBLR6E2027BLRMAA6E543_28485687542690192',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',2,0,'0','9818999760','Parth','Banerjee','',0,5293,'2020-03-19',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(687,0,98,'5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(688,0,347,'5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','cfwearyh','bh','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(689,0,348,'5-6125796059_1MAAIDR6E6194IDRDEL6E6409_28486370700905964',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','vdsafh','bhgtj','',0,5293,'2020-03-03',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(690,0,98,'TJS105900059585_3MAAIDR6E6194IDRDEL6E6409_28486614960605510',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(691,0,347,'TJS105900059585_3MAAIDR6E6194IDRDEL6E6409_28486614960605510',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','cfwearyh','bh','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(692,0,348,'TJS105900059585_3MAAIDR6E6194IDRDEL6E6409_28486614960605510',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta.catpl@gmail.com',1,0,'0','8860259858','vdsafh','bhgtj','',0,5293,'2020-03-03',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(696,0,62,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494','TJS101200059592',NULL,'PBDVJG-PBDVJG','PBDVJG-PBDVJG','','MAA-CCU-CCU-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(697,0,342,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494','TJS101200059592',NULL,'PBDVJG-PBDVJG','PBDVJG-PBDVJG','','MAA-CCU-CCU-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','C2','K2','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(698,0,234,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494','TJS101200059592',NULL,'PBDVJG-PBDVJG','PBDVJG-PBDVJG','','MAA-CCU-CCU-DEL',0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','I1','K1','',0,5293,'2020-03-12',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(699,0,99,'4-9901803256_12MAADELSG108DELCCUSG253_28491484726828984',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','8318864487','Arya','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(700,0,99,'10-8810145964_0MAADXBFZ8516_28494700828366717',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','8318864487','Arya','kumar','',0,5293,'1946-03-11','ghkhlj','IN','2022-03-15',NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30KG','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(701,0,349,'10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006','TJS113200059662',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','11111111111-11111111111','MAA-BLR-BLR-DXB',0,5293,0,'deepak.catpl@gmail.com',1,0,'0','8318864487','Deepak','Kumar','',0,5293,'1950-03-21','hbxkduhw','IN','2022-03-16',NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(702,0,350,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','kumar','',0,5293,'1946-03-17','kdfhkdy','IN','2022-07-21',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(703,0,62,'4-2978024104_0DELDXBSG131DXBDELSG12_28499496596450385',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,'1946-03-03','er','IN','2021-06-15',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(704,0,351,'4-5368534800_4DELBOMSG7177_28501832856284484','TJS104300059706',NULL,'Y8YVSS','Y8YVSS','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(705,0,352,'4-5368534800_4DELBOMSG7177_28501832856284484','TJS104300059706',NULL,'Y8YVSS','Y8YVSS','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','vivek','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',2,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(706,0,353,'4-5368534800_4DELBOMSG7177_28501832856284484','TJS104300059706',NULL,'Y8YVSS','Y8YVSS','','DEL-BOM',0,5293,0,'ganesh@catpl.co.in',2,0,'0','8585960381','baibhav','catpl','',0,5293,'2020-03-17',NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',3,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','0 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(707,0,36,'5-0964115347_13DELAMD6E268AMDBOM6E219_28502514252051000',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'anuradha@catpl.co.in',1,0,'0','9997534969','Gaurav','Saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(708,0,62,'5-7340912259_0DELCCU6E2265_28502669460919848',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(709,0,62,'5-7340912259_15CCUDEL6E2127_28502669401397036',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(713,0,357,'5-2772778711_29BOMDEL6E637_28504240365038430',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(714,0,358,'4-9441876623_3BOMDELSG2642_28505641036362367','TJS102100059762',NULL,'KBYQSG','KBYQSG','','BOM-DEL',0,5293,0,'ganesh1@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(716,0,360,'4-6371971645_3BOMDELSG2642_28505871562291049',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh1@catpl.co.in',1,0,'0','8585960381','ganesh','catpl','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(717,0,361,'4-8345789847_3DELBOMSG2871_28507432296615690',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh1@catpl.co.in',1,0,'0','8585960381','asdad','asda','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(718,0,361,'4-8345789847_1BOMDELSG790_28507432281761147',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh1@catpl.co.in',1,0,'0','8585960381','asdad','asda','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-18',0,'0','1',NULL,NULL,NULL,'0'),(719,0,362,'5-0752493295_0DELBOM6E2077_28562206079233970',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ganesh@catpl.co.in',1,0,'0','8585960381','Ganesh','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(720,0,363,'10-3710415267_5DELBOMUK945_28563367765913530',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',2,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(721,0,363,'10-3710415267_4BOMDELUK910_28563367727476583',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',2,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(722,0,364,'10-3710415267_5DELBOMUK945_28563367765913530',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(723,0,364,'10-3710415267_4BOMDELUK910_28563367727476583',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(724,0,365,'10-3710415267_5DELBOMUK945_28563367765913530',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(725,0,365,'10-3710415267_4BOMDELUK910_28563367727476583',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(726,0,366,'4-2355667927_1DELBOMSG7177_28563250991241625','TJS109400059802',NULL,'D555RI','D555RI','','DEL-BOM',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','ravi','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(727,0,367,'4-1771034981_1DELBOMSG7177_28573462518091262','TJS102300059832',NULL,'O8D2PP-O8D2PP','O8D2PP-O8D2PP','','BOM-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg','5300059834',NULL,'6','2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(728,0,367,'4-1771034981_1BOMDELSG790_28573462502957050',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(729,0,368,'10-4222073085_0DELBOMUK981_28584842514009237','TJS107000059877',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','11111111111','BOM-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(730,0,369,'10-4222073085_0DELBOMUK981_28584842514009237','TJS107000059877',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','11111111111','BOM-DEL',0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','RAvi','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(731,0,370,'10-4222073085_0DELBOMUK981_28584842514009237','TJS107000059877',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','11111111111','BOM-DEL',0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','Lala','kaka','',0,5293,'2020-03-10',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0PC','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(732,0,368,'5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Deepak','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(733,0,369,'5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','RAvi','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(734,0,370,'5-4222073085_1BOMDEL6E2174_28584844639908630',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',2,0,'0','9695357709','Lala','kaka','',0,5293,'2020-03-10',NULL,NULL,NULL,NULL,NULL,'','0','',3,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(735,0,371,'5-2514125537_0DELBOM6E2077_28585352341976144',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','A1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(736,0,371,'5-2514125537_20BOMDEL6E2174_28585352288983205',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','A1','K1','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(737,0,62,'5-5995704032_0DELBOM6E2077_28591238883643781',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(738,0,62,'5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(739,0,372,'15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15KG','5 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(740,0,62,'5-3082819678_1DELBOM6E2068_326964066076218',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(741,0,102,'4-2301243350_1DELBOMSG8723_38951715837960',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'ancd@catpl.co.in',1,0,'0','7072253698','GANESH','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'noida','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-19',0,'0','1',NULL,NULL,NULL,'0'),(742,0,373,'15-2537786393_33DELBOMAI537_10706474644999',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'25KG','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(743,0,373,'1-2537786393_8BOMPATG8351PATDELG8507_10700483318707',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak.catpl@gmail.com',1,0,'0','9695357709','Deepak','Kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Up','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(744,0,374,'15-7186026392_0DELBOMUK955_557606851951809',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'anuradha@catpl.co.in',3,0,'0','9997534969','Annu','saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'A- 76\r\n','Delhi Hills','7700',1,0,'231','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(745,0,103,'1-2170632972_1DELGOIG8194_13657340435244',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gpurwar@gmail.com',1,0,'0','9811192312','GAURAV','GUPTA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(746,0,103,'1-2170632972_1GOIDELG8195_13657333012608',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gpurwar@gmail.com',1,0,'0','9811192312','GAURAV','GUPTA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(747,0,62,'4-8817718147_12DELRKTSG160RKTDELSG161_14009553151933',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'deepak@catpl.co.in',1,0,'0','9695357709','Atulya','Kumar','',0,5293,NULL,'er','IN','2021-06-15',NULL,NULL,'','0','',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'20 Kg','7 Kg',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(748,0,104,'5-9811598189_0DELBOM6E148_581579652574361',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'anuradh@catpl.co.in',3,0,'0','9997534969','Anuradha','Saini','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-22',0,'0','1',NULL,NULL,NULL,'0'),(749,0,375,'4-0633571651_11DELPATSG8480PATMAASG548_21619448367479',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-23',0,'0','1',NULL,NULL,NULL,'0'),(750,0,29,'4-8092327344_11DELPATSG8480PATMAASG548_26360272055119',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'sudipta@catpl.co.in',1,0,'0','9818999760','Sudipta','Banerjee','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'sfsafsaf','Noida','19543',1,0,'101','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-23',0,'0','1',NULL,NULL,NULL,'0'),(751,0,105,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','GAGAN DEEP SINGH','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg + 5 Kg Additional','7 Kg',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(752,0,376,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',2,0,'0','8588866554','PRIYANKA','RAI','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg + 5 Kg Additional','7 Kg',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(753,0,377,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','SUKHLEEN','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(754,0,105,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','GAGAN DEEP SINGH','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(755,0,376,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',2,0,'0','8588866554','PRIYANKA','RAI','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(756,0,377,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','SUKHLEEN','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(757,0,106,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','GAGAN DEEP SINGH','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg + 5 Kg Additional','7 Kg',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(758,0,378,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',2,0,'0','8588866554','PRIYANKA','RAI','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg + 5 Kg Additional','7 Kg',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(759,0,379,'1-7012619301_0DELGOIG8300_19403683051304',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','SUKHLEEN','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(760,0,106,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','GAGAN DEEP SINGH','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(761,0,378,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',2,0,'0','8588866554','PRIYANKA','RAI','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(762,0,379,'5-7012619301_23GOIDEL6E5178_19405731714857',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'gagasingh@gmail.com',1,0,'0','8588866554','SUKHLEEN','BHATIA','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(763,0,380,'4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'muskancatpl@gmail.com',3,0,'0','9634022688','Muskan','Gupta','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'Sector 42','Agra','0',1,0,'0','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2021-03-25',0,'0','1',NULL,NULL,NULL,'0'),(764,0,80,'5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'baibhav@catpl.co.in',1,0,'0','7701888604','baibhav','kumar','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-26',0,'0','1',NULL,NULL,NULL,'0'),(765,0,107,'21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'maroof.kazmi@gmail.com',1,0,'0','7599365720','Narendra','Modi','',0,5293,NULL,'p7961896','IN','2027-03-10',NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'0KG','7 Kg',NULL,NULL,NULL,'2021-03-26',0,'0','1',NULL,NULL,NULL,'0'),(766,0,108,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'faizanlari5@gmail.com',1,0,'0','8874249264','FAIZANULLAH','FAIZANULLAH','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-27',0,'0','1',NULL,NULL,NULL,'0'),(767,0,381,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'faizanlari5@gmail.com',2,0,'0','8874249264','Asiya Faizan','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',1,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2021-03-27',0,'0','1',NULL,NULL,NULL,'0'),(768,0,382,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'faizanlari5@gmail.com',2,0,'0','8874249264','Samar','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-27',0,'0','1',NULL,NULL,NULL,'0'),(769,0,383,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620',NULL,NULL,NULL,NULL,NULL,NULL,0,5293,0,'faizanlari5@gmail.com',1,0,'0','8874249264','Mannat','Lari','',0,5293,NULL,NULL,NULL,NULL,NULL,NULL,'','0','',2,0,'','91',NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2021-03-27',0,'0','1',NULL,NULL,NULL,'0');
/*!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 AUTO_INCREMENT=15 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 AUTO_INCREMENT=12 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_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_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,
`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>','','','','Blogs & Guest Reviews','','');
/*!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_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 AUTO_INCREMENT=9 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 */;
INSERT INTO `tbl_home_promotion` VALUES (1,1,'','Test by mangal','<p><a href=\"http://localhost/dst_html/index.html\">test</a></p>\r\n','1556783893promo_1.jpg','','0','1','1','1'),(2,1,'','Test by mangal 2','<p><a href=\"http://localhost/dst_html/index.html\">test 3</a></p>\r\n','1556783906promo_1.jpg','','0','1','1','1'),(3,2,'','{\"promotion_tag1\":\"honeymoon\",\"promotion_tag2\":\"Tag 2\",\"promotion_tag3\":\"Tag 3\",\"promotion_tag4\":\"Tag 4\"}','','1556783324promo_2.jpg','{\"promotion_tag_url1\":\"http:\\/\\/103.239.139.156\\/holidaybazaar\\/tour-destination\\/category\\/honeymoon\",\"promotion_tag_url2\":\"http:\\/\\/103.239.139.156\\/holidaybazaar\\/\",\"promotion_tag_url3\":\"http:\\/\\/103.239.139.156\\/holidaybazaar\\/\",\"promotion_tag_url4\":\"http:\\/\\/103.239.139.156\\/holidaybazaar\\/\"}','{\"tagopt1\":1,\"tagopt2\":1,\"tagopt3\":1,\"tagopt4\":0}','1','0','1'),(4,2,'','{\"promotion_tag1\":\"Tag 1\",\"promotion_tag2\":\"Tag 2\",\"promotion_tag3\":\"Tag 3\",\"promotion_tag4\":\"Tag 4\"}','','1556783379promo_2.jpg','{\"promotion_tag_url1\":\"http:\\/\\/localhost\\/dst_html\\/index.html\",\"promotion_tag_url2\":\"http:\\/\\/localhost\\/dst_html\\/index.html\",\"promotion_tag_url3\":\"http:\\/\\/localhost\\/dst_html\\/index.html\",\"promotion_tag_url4\":\"http:\\/\\/localhost\\/dst_html\\/index.html\"}','{\"tagopt1\":0,\"tagopt2\":0,\"tagopt3\":0,\"tagopt4\":0}','1','1','0'),(5,3,'','','','1556783354promo_3.jpg','http://103.239.139.156/holidaybazaar/','1','1','0','1'),(6,3,'','','','1556783362promo_3.jpg','http://localhost/dst_html/index.html','0','1','1','0'),(7,1,'','Domestic Package','<p><a href=\"http://rastafari.hellogtx.com/\">Domestic Package 1</a></p>\r\n\r\n<p><a href=\"http://online.hellogtx.com/\">Domestic Package 2</a></p>\r\n','1556784010promo_1.jpg','','0','1','0','1'),(8,1,'','International Package','<p><a href=\"http://rastafari.hellogtx.com/\">International Package 1</a></p>\r\n\r\n<p><a href=\"http://rastafari.hellogtx.com/\">International Package 2</a></p>\r\n','1556784112promo_1.jpg','','0','1','0','1');
/*!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,
`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 NOT NULL,
`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(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,
`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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 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 */;
INSERT INTO `tbl_hotel_booking` VALUES (1,384,5293,'','2021-04-17','2021-04-19','','','',NULL,NULL,'a4aa7-67416-8ad0b-8a2f4',0,NULL,'hsid2695661847-741177882','OYO FLAGSHIP 75488 ROYAL GRAND INN','hsid2695661847-741177882','',3,'INR','http://hotel.atlastravelsonline.com//cpfv3/images/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yNjg5MzY5MDEuanBnP2s9Nzc3OWE1MzRmNzM2ZjFjMjQ2MmNmODQ2Y2QyYTE1YjJkNzhmZGUxZTU2OTI3Yzk0NzlhMDI1YjlhZjFjMmRlMiZvPT9zPTMxMng=','H-35,Sector 51, Noida Special Economic Zone,Noida','','H-35,Sector 51, Noida Special Economic Zone,Noida',NULL,NULL,'H-35,Sector 51, Noida Special Economic Zone,Noida','extra service',2,1,1,0,110203,110203,'New Delhi','null',0,NULL,NULL,NULL,0,0,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"18630361_0_75244\",\"RoomCategory\":\"Classic Double or Twin\",\"RoomType\":\"Single-Classic Double Or Twin-1-\",\"Adult\":1,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":594.95,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":594.95,\"TotalRoomPrice\":1189.9,\"TotalFare\":1189.9,\"TotalBaseFare\":1066.3,\"TotalNetFare\":1089.9,\"TotalTaxFare\":123.6,\"TaxFareBreakup\":{\"MU\":100,\"MF\":20,\"MFT\":3.6},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":594.95,\"TAF\":61.8,\"BF\":533.15,\"NF\":544.95},\"afc\":{\"TAF\":{\"MU\":50,\"MF\":10,\"MFT\":1.8}}},{\"day\":2,\"fc\":{\"TF\":594.95,\"TAF\":61.8,\"BF\":533.15,\"NF\":544.95},\"afc\":{\"TAF\":{\"MU\":50,\"MF\":10,\"MFT\":1.8}}}],\"PriceWithMarkup\":594.95,\"arrMarkUps\":{\"HotelRoomPrice\":1189.9,\"pernightperroomprice\":594.95,\"RoomPrice\":594.95,\"withmarkupprice\":594.95,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0}}],\"RoomId\":\"26_18630361-562_0_52785\",\"RoomTotalPrice\":1189.9,\"iopr\":false,\"ipr\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":false,\"HotelDetails\":{\"HotelId\":\"hsid2695661847-741177882\",\"HotemName\":\"OYO FLAGSHIP 75488 ROYAL GRAND INN\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 5 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yNjg5MzY5MDEuanBnP2s9Nzc3OWE1MzRmNzM2ZjFjMjQ2MmNmODQ2Y2QyYTE1YjJkNzhmZGUxZTU2OTI3Yzk0NzlhMDI1YjlhZjFjMmRlMiZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yNjg5MzY5MDEuanBnP2s9Nzc3OWE1MzRmNzM2ZjFjMjQ2MmNmODQ2Y2QyYTE1YjJkNzhmZGUxZTU2OTI3Yzk0NzlhMDI1YjlhZjFjMmRlMiZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xL2YzNzBjNzg2ZjIxMjM1YmYwMDNmYzk0ODQyYWI1ZGY3LmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xL2YzNzBjNzg2ZjIxMjM1YmYwMDNmYzk0ODQyYWI1ZGY3LmpwZz9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xLzhjMmY3MDZiMzJjYjcxMzAxMjllZGFkOTYwYWJjOTQ0LmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xLzhjMmY3MDZiMzJjYjcxMzAxMjllZGFkOTYwYWJjOTQ0LmpwZz9zPTMxMng=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.3677\",\"lt\":\"28.5793\"},\"HotelAddress\":\"H-35,Sector 51, Noida Special Economic Zone,Noida\",\"HotelCity\":\"New Delhi\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null}}',NULL,NULL,NULL,'','',NULL,'0','2021-03-31 13:50:55','2021-03-31 13:50:55',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,62,1,'TJS204500063115','2021-04-28','2021-04-29','','','SUCCESS',NULL,NULL,'a122d-1a018-21c16-90ace',0,NULL,'hsid6993505041-799362267','SPOT ON DEL2878 S K RESIDENCY','hsid6993505041-799362267','',3,'INR','http://hotel.atlastravelsonline.com//cpfv3/images/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzNTQuanBnP2s9NDA5MDMxOWNlNzkyZGY5YTM4YmU1ZTFkM2UwOWZjNzA0MTlkYzk3Y2Y0NmU3OTM5Mjc2OGFmZWZiNzk4NTFkYSZvPT9zPTMxMng=','RZ B3/162,RZ B3/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi','','RZ B3/162,RZ B3/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi',NULL,NULL,'RZ B3/162,RZ B3/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi','extra service',1,1,2,0,110268,110268,'Noida','[{\"AgencySysId\":\"1\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"MR\",\"Relation\":\"9\",\"Contacts\":\"9695357709\",\"FirstName\":\"VIVEK\",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"1\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2021-04-09 13:21:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"a122d-1a018-21c16-90ace\",\"modified\":\"2021-04-09 13:21:08\",\"created\":\"2021-04-09 13:21:08\",\"CustomerMemberSysId\":\"386\"}]',0,NULL,NULL,NULL,0,0,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"22476514_0_74434\",\"RoomCategory\":\"SPOT ON Room without Air Conditioning\",\"RoomType\":\"Double-SPOT ON Room Without Air Conditioning-2-\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":549.81,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":549.81,\"TotalRoomPrice\":549.81,\"TotalFare\":549.81,\"TotalBaseFare\":438.01,\"TotalNetFare\":449.81,\"TotalTaxFare\":111.8,\"TaxFareBreakup\":{\"MU\":100,\"MFT\":1.8,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"NF\":449.81,\"TF\":549.81,\"BF\":438.01,\"TAF\":111.8},\"afc\":{\"TAF\":{\"MU\":100,\"MFT\":1.8,\"MF\":10}}}],\"PriceWithMarkup\":549.81,\"arrMarkUps\":{\"HotelRoomPrice\":549.81,\"pernightperroomprice\":549.81,\"RoomPrice\":549.81,\"withmarkupprice\":549.81,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0}}],\"RoomId\":\"26_22476514-182_0_70792\",\"RoomTotalPrice\":549.81,\"iopr\":false,\"ipr\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":false,\"HotelDetails\":{\"HotelId\":\"hsid6993505041-799362267\",\"HotemName\":\"SPOT ON DEL2878 S K RESIDENCY\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 5 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzNTQuanBnP2s9NDA5MDMxOWNlNzkyZGY5YTM4YmU1ZTFkM2UwOWZjNzA0MTlkYzk3Y2Y0NmU3OTM5Mjc2OGFmZWZiNzk4NTFkYSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzNTQuanBnP2s9NDA5MDMxOWNlNzkyZGY5YTM4YmU1ZTFkM2UwOWZjNzA0MTlkYzk3Y2Y0NmU3OTM5Mjc2OGFmZWZiNzk4NTFkYSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMjAuanBnP2s9N2JkZTRhYTNhNDQ1Yjc0Yzg4NjkwOTFmMzk5OTljMmMwYWQ1MTBhZGY4ZGZjMjMxNmJkMGU4YWQyNzExMzFjNSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMjAuanBnP2s9N2JkZTRhYTNhNDQ1Yjc0Yzg4NjkwOTFmMzk5OTljMmMwYWQ1MTBhZGY4ZGZjMjMxNmJkMGU4YWQyNzExMzFjNSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMTMuanBnP2s9NDE1ZTA3NTBjYjI3ZDc2MGM4NzY3N2ZmM2FiMDczMDQzOGM0OGZmNWM4MmM0YzNkZDJlOGUyZGNlNDRmNzYwMSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMTMuanBnP2s9NDE1ZTA3NTBjYjI3ZDc2MGM4NzY3N2ZmM2FiMDczMDQzOGM0OGZmNWM4MmM0YzNkZDJlOGUyZGNlNDRmNzYwMSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMzQuanBnP2s9MmRiOTRjNzljYjcxMGU0ZTg2OGUwNmU1M2Q0ZGUxNzI4ZWU4ZGUzMDdiMTY3ZTgyMzlhZTAwN2Q1M2I1YTZjNiZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMzQuanBnP2s9MmRiOTRjNzljYjcxMGU0ZTg2OGUwNmU1M2Q0ZGUxNzI4ZWU4ZGUzMDdiMTY3ZTgyMzlhZTAwN2Q1M2I1YTZjNiZvPT9zPTMxMng=\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.07655\",\"lt\":\"28.60444\"},\"HotelAddress\":\"RZ B3\\/162,RZ B3\\/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi\",\"HotelCity\":\"Noida\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null}}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS204500063115\",\"partnerId\":\"0\",\"amount\":449.81,\"markup\":100.00,\"orderType\":\"HOTEL\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"9695357709\"],\"code\":[\"+91\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-04-09T07:51:53.738\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"SPOT ON DEL2878 S K RESIDENCY\",\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 5 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.</strong>\",\"rt\":3,\"gl\":{\"ln\":\"77.07655\",\"lt\":\"28.60444\"},\"ad\":{\"adr\":\"RZ B3/162,RZ B3/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi\",\"city\":{\"name\":\"Noida\"},\"country\":{\"name\":\"India\"}},\"ops\":[{\"ris\":[{\"id\":\"22476514_0_74434\",\"rc\":\"SPOT ON Room without Air Conditioning\",\"rt\":\"Double-SPOT ON Room Without Air Conditioning-2-\",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":549.81,\"tfcs\":{\"NF\":449.81,\"TF\":549.81,\"BF\":438.01,\"TAF\":111.80},\"tafcs\":{\"TAF\":{\"IGST\":1.80,\"MU\":100.00,\"MFT\":1.80,\"MF\":10.00}},\"ddt\":\"2021-04-23T12:00\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":438.01,\"NF\":449.81,\"TF\":549.81,\"TAF\":111.80},\"afc\":{\"TAF\":{\"IGST\":1.80,\"MU\":100.00,\"MFT\":1.80,\"MF\":10.00}}}],\"checkInDate\":\"2021-04-28\",\"checkOutDate\":\"2021-04-29\",\"ti\":[{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\"},{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Vivek\",\"lN\":\"Kumar\"}],\"iopr\":false}],\"tp\":449.81,\"cnp\":{\"id\":\"26_22476514-182_0_70792\",\"ifra\":true,\"pd\":[{\"fdt\":\"2021-04-09T07:50:13.816\",\"tdt\":\"2021-04-23T12:00\",\"am\":0.00},{\"fdt\":\"2021-04-23T12:00\",\"tdt\":\"2021-04-28T12:00\",\"am\":438.01}],\"mi\":{\"iba\":true,\"iso\":false}},\"ddt\":\"2021-04-23T12:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"No Shared BathroomChild and extra bed policy : Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.Guests over 5 years old are considered as an adults.Extra beds are depend on the room you choose,please check the individual room policy for more details.\"}],\"iopr\":false}],\"mi\":{}},\"query\":{\"checkinDate\":\"2021-04-28\",\"checkoutDate\":\"2021-04-29\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":3951459.36}}}}','','',NULL,'0','2021-04-09 07:51:09','2021-04-09 07:51:09',1,'','','11000000082766',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,89,1,'','2021-04-15','2021-04-17','','','',NULL,NULL,'56f6c-83cf7-9aa62-5c10a',0,NULL,'hsid0798842139-1792241043','HOTEL NORTH AVENUE BY SPREE','hsid0798842139-1792241043','',3,'INR','http://hotel.atlastravelsonline.com//cpfv3/images/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS8wNWI0ZDIzYzQ0ZDQyYmQ1NTFjOTdjYjljYjhmZWQ5MS5qcGc/cz0zMTJ4','31, Bunglow Road Kamlanagar','','31, Bunglow Road Kamlanagar',NULL,NULL,'31, Bunglow Road Kamlanagar','extra service',2,1,2,0,110268,110268,'Noida','[{\"AgencySysId\":\"1\",\"CustomerSysId\":\"89\",\"EmailId\":\"mangal@catpl.co.in\",\"Salutation\":\"MR\",\"Relation\":\"9\",\"Contacts\":\"7727052691\",\"FirstName\":\"SADAD\",\"LastName\":\"ASDASD\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"1\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2021-04-12 12:43:27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"56f6c-83cf7-9aa62-5c10a\",\"modified\":\"2021-04-12 12:43:27\",\"created\":\"2021-04-12 12:43:27\",\"CustomerMemberSysId\":\"387\"}]',0,NULL,NULL,NULL,0,0,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"910253_1_99446\",\"RoomCategory\":\"Standard Room\",\"RoomType\":\"Double-Standard Room-2-\",\"Adult\":2,\"Child\":0,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":11185.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":11185.53,\"TotalRoomPrice\":22371.06,\"TotalFare\":22371.06,\"TotalBaseFare\":22247.46,\"TotalNetFare\":22271.06,\"TotalTaxFare\":123.6,\"TaxFareBreakup\":{\"MFT\":3.6,\"MU\":100,\"MF\":20},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":11123.73,\"TAF\":61.8,\"TF\":11185.53,\"NF\":11135.53},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":50,\"MF\":10}}},{\"day\":2,\"fc\":{\"BF\":11123.73,\"TAF\":61.8,\"TF\":11185.53,\"NF\":11135.53},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":50,\"MF\":10}}}],\"PriceWithMarkup\":11185.53,\"arrMarkUps\":{\"HotelRoomPrice\":22371.06,\"pernightperroomprice\":11185.53,\"RoomPrice\":11185.53,\"withmarkupprice\":11185.53,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0}}],\"RoomId\":\"26_910253-180_1_74845\",\"RoomTotalPrice\":22371.06,\"iopr\":false,\"ipr\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":false,\"HotelDetails\":{\"HotelId\":\"hsid0798842139-1792241043\",\"HotemName\":\"HOTEL NORTH AVENUE BY SPREE\",\"HotelDescription\":\"Stop at Hotel North Avenue to discover the wonders of New Delhi and NCR. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. All the necessary facilities, including 24-hour room service, free Wi-Fi in all rooms, 24-hour security, daily housekeeping, taxi service, are at hand. Guestrooms are designed to provide an optimal level of comfort with welcoming decor and some offering convenient amenities like television LCD\\/plasma screen, internet access wireless, internet access wireless (complimentary), non smoking rooms, air conditioning. The hotel offers various recreational opportunities. Convenience and comfort makes Hotel North Avenue the perfect choice for your stay in New Delhi and NCR.<br><br><strong>Important Notice:<br>Guests with a New Delhi ID are not permitted to check-in. <br\\/> The property reserves the right of admission. Accommodation can be denied to guests posing as married couples if suitable ID proof is not presented at the time of check-in. <br\\/> Please note that any changes in tax structure due to government policies will result in revised taxes, which will be applicable to all reservations and will be charged additionally during check out.<br><br>Child and extra bed policy : <br><br> Infant 0-5 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 6-11 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 11 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS8wNWI0ZDIzYzQ0ZDQyYmQ1NTFjOTdjYjljYjhmZWQ5MS5qcGc\\/cz0zMTJ4\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS8wNWI0ZDIzYzQ0ZDQyYmQ1NTFjOTdjYjljYjhmZWQ5MS5qcGc\\/cz0zMTJ4\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMC85MTAyNTMvOTEwMjUzXzE2MDYxMDE1NDQwMDQzMzg3NTkwLmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMC85MTAyNTMvOTEwMjUzXzE2MDYxMDE1NDQwMDQzMzg3NTkwLmpwZz9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS9kMzBlNTcxZjYwM2I0N2ZiY2Y2NjAzYzhiYmExMzk4MS5qcGc\\/cz0zMTJ4\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS9kMzBlNTcxZjYwM2I0N2ZiY2Y2NjAzYzhiYmExMzk4MS5qcGc\\/cz0zMTJ4\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMC85MTAyNTMvOTEwMjUzXzE2MDYxMDE1NDQwMDQzMzg3NTkxLmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMC85MTAyNTMvOTEwMjUzXzE2MDYxMDE1NDQwMDQzMzg3NTkxLmpwZz9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS85MzZlNzkzZWRmZDgxZjExNjkzMTk0MTViODFkYmQyNi5qcGc\\/cz0zMTJ4\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzkxMDI1My8tMS85MzZlNzkzZWRmZDgxZjExNjkzMTk0MTViODFkYmQyNi5qcGc\\/cz0zMTJ4\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.20591\",\"lt\":\"28.682886\"},\"HotelAddress\":\"31, Bunglow Road Kamlanagar\",\"HotelCity\":\"Noida\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null}}',NULL,NULL,NULL,'','',NULL,'0','2021-04-12 07:13:28','2021-04-12 07:13:28',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,62,1,'TJS204100063905','2021-06-06','2021-06-07','','','SUCCESS',NULL,NULL,'12286-a6db9-bee9a-a5fe5',0,NULL,'hsid6930348855-476262350','HOTEL THE NEST','hsid6930348855-476262350','',3,'INR','http://hotel.atlastravelsonline.com//cpfv3/images/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvQ0hBSU4uanBn','Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu','','Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu',NULL,NULL,'Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu','extra service',1,1,1,2,110318,110318,'Manali','[{\"AgencySysId\":\"1\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"MASTER\",\"Relation\":\"9\",\"Contacts\":\"9695357709\",\"FirstName\":\"RAHUL\",\"LastName\":\" KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"1\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2021-04-12 13:49:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"12286-a6db9-bee9a-a5fe5\",\"modified\":\"2021-04-12 13:49:54\",\"created\":\"2021-04-12 13:49:54\",\"CustomerMemberSysId\":\"389\"},{\"AgencySysId\":\"1\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"MASTER\",\"Relation\":\"9\",\"Contacts\":\"9695357709\",\"FirstName\":\"VIVEK \",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"1\",\"Address\":\"Not Required\",\"CityTitle\":\"Not Required\",\"CitySysId\":\"Not Required\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"Not Required\",\"countryCode\":\"Not Required\",\"RegisterDate\":\"2021-04-12 13:49:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"12286-a6db9-bee9a-a5fe5\",\"modified\":\"2021-04-12 13:49:54\",\"created\":\"2021-04-12 13:49:54\",\"CustomerMemberSysId\":\"390\"}]',0,NULL,NULL,NULL,0,0,0,0,'{\"0\":{\"Rooms\":[{\"id\":\"0_00035463-94_40093\",\"RoomCategory\":\"Single Deluxe I\",\"RoomType\":\"Single Deluxe I\",\"Adult\":1,\"Child\":2,\"MealBase\":\"ROOM ONLY\",\"TotalPrice\":1387.19,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0,\"pernightperroomprice\":1387.19,\"TotalRoomPrice\":1387.19,\"TotalFare\":1387.19,\"TotalBaseFare\":1275.39,\"TotalNetFare\":1287.19,\"TotalTaxFare\":111.8,\"TaxFareBreakup\":{\"MFT\":1.8,\"MU\":100,\"MF\":10},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"BF\":1275.39,\"TAF\":111.8,\"TF\":1387.19,\"NF\":1287.19},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":100,\"MF\":10}}}],\"PriceWithMarkup\":1387.19,\"arrMarkUps\":{\"HotelRoomPrice\":1387.19,\"pernightperroomprice\":1387.19,\"RoomPrice\":1387.19,\"withmarkupprice\":1387.19,\"gtxMarkUp\":null,\"GSTOnGTXMarkUp\":0}}],\"RoomId\":\"0_00035463-94_30819\",\"RoomTotalPrice\":1387.19,\"iopr\":false,\"ipr\":false},\"country\":\"India\",\"iopr\":false,\"ipr\":false,\"HotelDetails\":{\"HotelId\":\"hsid6930348855-476262350\",\"HotemName\":\"HOTEL THE NEST\",\"HotelDescription\":\"<b>Rooms:<\\/b><br>Deluxe I<br>Standard Room<br>Deluxe II<br><b>Check in at <\\/b>12:00 pm<br><b>Check out at <\\/b>12:00 pm<br>\",\"HotelImages\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvQ0hBSU4uanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvQ0hBSU4uanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSEEuanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSEEuanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSE8uanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSE8uanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMy9ueGQvbWF0L3J5aS9qYnEvMDAwMDA5NzcwOFJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMy9ueGQvbWF0L3J5aS9qYnEvMDAwMDA5NzcwOFJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ1MFJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ1MFJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ0OVJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ0OVJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQxLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQxLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQyLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQyLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQzLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQzLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ0LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ0LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ1LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ1LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ2LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ2LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ3LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ3LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ4LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ4LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ5LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ5LmpwZw==\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"77.10909\",\"lt\":\"31.958788\"},\"HotelAddress\":\"Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu\",\"HotelCity\":\"Manali\",\"HotelCountry\":\"India\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":[\"Suitable for children\\rPrinter\\rTaxi Service\\rCCTV\\rFire Extinguisher\\rBachelors\\rChild Friendly\\rCouples\\rFamilies with Children\\rFamily\\rLarge Groups\\rSenior Citizen Friendly\\rYoungsters\\rNon-Vegetarian\\rUnmarried Couples\\rTV In Room\\rEnglish\\rHindi\\rPunjabi\\rCar rental\\rBike rental\\rTravel counter\\r4 Wheeler\\rCash\\rDebit Card\\rCredit Card\\rVisa\\rMastercard\\rPaytm\\rRoom Service\\rRoom Service (Limited Time)\\rHot water available\\rAirport\\/\\/Railway station pickup available (Chargeable)\\rAirport\\/Railway station drop (chargeable)\\rCar rental (Chargeable)\\rBike Rental (Chargeable)\\rScooty Rental (Chargeable)\\rBus Parking\\rCCTV camera installed inside\\/outside hotel premises\\rCCTV camera installed on each floor\\rWIFI\\rLaundry facilities\\rMedical services\\rCarpeted\\rParking\\rAirport Shuttle (surcharge)\\rFlat-screen TV\\rTV\\rSatellite channels\\rCable channels\\rRestaurant with Dining Menu\\rTerrace\\rDining area\\rRestaurant\\rLuggage storage\\rCurrency exchange\\rDoctor on Call\\rFront desk\\rInternet Access\\rTrekking\\/ Hiking\\rH\\/C running water\\rBuzzer \\/ Intercom\\rWestern Toilet\\rAttached Bathroom\\rMakeup mirror\\rPremium TV channels\\rShowers only\\rSmoking rooms\\rwindow opens\\rCable\\/satellite TV\\rCeiling fan\\rExtra towels,linens,bedding\\rInternet access-high speed\\rInternet access-wireless\"]}}',NULL,NULL,'{\"order\":{\"bookingId\":\"TJS204100063905\",\"partnerId\":\"0\",\"amount\":1287.19,\"markup\":100.00,\"orderType\":\"HOTEL\",\"deliveryInfo\":{\"emails\":[\"deepak@catpl.co.in\"],\"contacts\":[\"9695357709\"],\"code\":[\"+91\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-04-12T08:29:10.504\"},\"itemInfos\":{\"HOTEL\":{\"hInfo\":{\"name\":\"HOTEL THE NEST\",\"des\":\"<b>Rooms:</b><br>Deluxe I<br>Standard Room<br>Deluxe II<br><b>Check in at </b>12:00 pm<br><b>Check out at </b>12:00 pm<br>\",\"rt\":3,\"gl\":{\"ln\":\"77.10909\",\"lt\":\"31.958788\"},\"ad\":{\"adr\":\"Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu\",\"city\":{\"name\":\"Manali\"},\"country\":{\"name\":\"India\"}},\"cnt\":{},\"ops\":[{\"ris\":[{\"id\":\"0_00035463-94_40093\",\"rc\":\"Single Deluxe I\",\"rt\":\"Single Deluxe I\",\"adt\":1,\"chd\":2,\"mb\":\"ROOM ONLY\",\"tp\":1387.19,\"tfcs\":{\"BF\":1275.39,\"TAF\":111.80,\"TF\":1387.19,\"NF\":1287.19},\"tafcs\":{\"TAF\":{\"MFT\":1.80,\"MU\":100.00,\"MF\":10.00,\"IGST\":1.80}},\"ddt\":\"2021-05-30T12:00\",\"pis\":[{\"day\":1,\"fc\":{\"BF\":1275.39,\"NF\":1287.19,\"TF\":1387.19,\"TAF\":111.80},\"afc\":{\"TAF\":{\"MFT\":1.80,\"MU\":100.00,\"MF\":10.00,\"IGST\":1.80}}}],\"checkInDate\":\"2021-06-06\",\"checkOutDate\":\"2021-06-07\",\"ti\":[{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Deepak\",\"lN\":\"Kumar\"},{\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Rahul\",\"lN\":\"kumar\",\"age\":5},{\"ti\":\"Master\",\"pt\":\"CHILD\",\"fN\":\"Vivek\",\"lN\":\"Kumar\",\"age\":6}],\"iopr\":false}],\"tp\":1287.19,\"cnp\":{\"id\":\"0_00035463-94_30819\",\"ifra\":true,\"pd\":[{\"fdt\":\"2021-04-12T08:01:15.474\",\"tdt\":\"2021-05-30T12:00\",\"am\":0.00},{\"fdt\":\"2021-05-30T12:00\",\"tdt\":\"2021-06-06T12:00\",\"am\":1275.39}],\"mi\":{\"iba\":true,\"iso\":false}},\"ddt\":\"2021-05-30T12:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Mandatory Gala Dinner charges applicable for Christmas and New Year to be paid at the hotel directly by the guests(If any) Compulsory Gala Dinner charges applicable for Christmas and New Year to be paid at the hotel directly by the guestSanitized Room Trained Staff - Personal Hygiene Sterilize Indoor Adherence to WHO Guidelines Hotel Staff and Guest\'s body temperature monitored at hotel entry points. Refused entry if the temperature is above 99.1 ( F ) degree Fahrenheit. Rooms will have alcohol-based hand sanitizer and face mask for guest use. Room sanitization done in front of guests when checking in. Hotel staff has Arogya Setu app. Every staff member wears face masks and gloves at all service times. Hotel rooms/floors and public areas are cleaned with hospital-grade disinfectants The hotel has In-Room Dining options available with minimal contact service and disposable/sanitized crockery & cutlery. Hotel staff ensures to maintain social distancing at all times. Every guest\'s travel records are maintained as per local and central Government of India guidelines. While working with supplier and contractors hotel complies with health advisories and Government guidelines.\"}],\"iopr\":false}],\"mi\":{}},\"query\":{\"checkinDate\":\"2021-06-06\",\"checkoutDate\":\"2021-06-07\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":2}],\"isSearchCompleted\":false}}},\"gstInfo\":{},\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":3950172.17}}}}','','',NULL,'0','2021-04-12 08:19:54','2021-04-12 08:19:54',1,'','','11000000083420',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!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,
`gstcity` varchar(100) DEFAULT NULL,
`gststate` varchar(100) DEFAULT NULL,
`gstpincode` varchar(10) 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_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,
`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 AUTO_INCREMENT=62 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 */;
INSERT INTO `tbl_invoice` VALUES (1,'inv-000001','123',0,0,'2020-12-25 10:27:33','2020-12-25 10:27:33'),(2,'inv-002','13245',0,0,'2020-12-25 10:27:55','2020-12-25 10:27:55'),(3,'INV-000003','321',0,0,'2020-12-25 10:37:25','2020-12-25 10:37:25'),(4,'INV-000004','321',0,0,'2020-12-25 10:44:21','2020-12-25 10:44:21'),(5,'INV-000005','329',0,0,'2020-12-25 10:45:58','2020-12-25 10:45:58'),(6,'INV-000006','TJS104600045193',0,0,'2020-12-25 10:49:54','2020-12-25 10:49:54'),(7,'INV-000007','331',0,0,'2020-12-25 11:15:28','2020-12-25 11:15:28'),(8,'INV-000008','333',0,0,'2020-12-25 11:19:13','2020-12-25 11:19:13'),(9,'INV-000009','TJS103300045198',0,0,'2020-12-25 11:27:21','2020-12-25 11:27:21'),(10,'INV-000010','TJS104100045202',0,0,'2020-12-25 11:45:03','2020-12-25 11:45:03'),(11,'INV-000011','TJS101000045303',0,0,'2020-12-26 12:31:06','2020-12-26 12:31:06'),(12,'INV-000012','TJS109800045313',0,0,'2020-12-26 12:33:12','2020-12-26 12:33:12'),(13,'INV-000013','TJS109100045464',0,0,'2020-12-28 10:37:03','2020-12-28 10:37:03'),(14,'INV-000014','TJS103300045643',0,0,'2020-12-29 07:04:58','2020-12-29 07:04:58'),(15,'INV-000015','TJS104800045648',0,0,'2020-12-29 07:18:47','2020-12-29 07:18:47'),(16,'INV-000016','TJS100300048054',0,0,'2021-01-13 08:15:35','2021-01-13 08:15:35'),(17,'INV-000017','TJS101000048526',0,0,'2021-01-15 07:36:08','2021-01-15 07:36:08'),(18,'INV-000018','TJS109800049537',0,0,'2021-01-20 09:16:42','2021-01-20 09:16:42'),(19,'INV-000019','TJS103400049674',0,0,'2021-01-20 13:14:18','2021-01-20 13:14:18'),(20,'INV-000020','TJS102600054258',0,0,'2021-02-22 07:57:17','2021-02-22 07:57:17'),(21,'INV-000021','TJS105400054268',0,0,'2021-02-22 08:34:08','2021-02-22 08:34:08'),(22,'INV-000022','TJS105500054431',0,0,'2021-02-22 14:00:34','2021-02-22 14:00:34'),(23,'INV-000023','TJS108900054490',0,0,'2021-02-23 06:59:21','2021-02-23 06:59:21'),(24,'INV-000024','TJS101900054496',0,0,'2021-02-23 07:11:52','2021-02-23 07:11:52'),(25,'INV-000025','TJS109300054842',0,0,'2021-02-26 07:39:11','2021-02-26 07:39:11'),(26,'INV-000026','TJS117700054848',0,0,'2021-02-26 08:23:05','2021-02-26 08:23:05'),(27,'INV-000027','TJS106200054849',0,0,'2021-02-26 08:25:03','2021-02-26 08:25:03'),(28,'INV-000028','TJS107900057504',0,0,'2021-03-09 05:38:46','2021-03-09 05:38:46'),(29,'INV-000029','TJS109700057807',0,0,'2021-03-09 12:10:35','2021-03-09 12:10:35'),(30,'INV-000030','TJS108500058270',0,0,'2021-03-11 10:25:49','2021-03-11 10:25:49'),(31,'INV-000031','TJS109000058273',0,0,'2021-03-11 10:28:24','2021-03-11 10:28:24'),(32,'INV-000032','TJS108700058482',0,0,'2021-03-12 11:02:03','2021-03-12 11:02:03'),(33,'INV-000033','TJS108400058483',0,0,'2021-03-12 11:04:03','2021-03-12 11:04:03'),(34,'INV-000034','TJS114700058929',0,0,'2021-03-15 07:47:27','2021-03-15 07:47:27'),(35,'INV-000035','TJS114000059229',0,0,'2021-03-16 09:49:50','2021-03-16 09:49:50'),(36,'INV-000036','TJS107300059280',0,0,'2021-03-16 12:21:48','2021-03-16 12:21:48'),(37,'INV-000037','TJS118900059288',0,0,'2021-03-16 13:02:43','2021-03-16 13:02:43'),(38,'INV-000038','TJS113200059297',0,0,'2021-03-16 14:32:43','2021-03-16 14:32:43'),(39,'INV-000039','TJS115300059309',0,0,'2021-03-17 05:12:43','2021-03-17 05:12:43'),(40,'INV-000040','TJS114900059312',0,0,'2021-03-17 05:33:52','2021-03-17 05:33:52'),(41,'INV-000041','TJS116500059317',0,0,'2021-03-17 05:58:34','2021-03-17 05:58:34'),(42,'INV-000042','TJS111000059319',0,0,'2021-03-17 06:21:40','2021-03-17 06:21:40'),(43,'INV-000043','TJS114400059320',0,0,'2021-03-17 06:36:40','2021-03-17 06:36:40'),(44,'INV-000044','TJS115800059322',0,0,'2021-03-17 06:45:05','2021-03-17 06:45:05'),(45,'INV-000045','TJS110200059323',0,0,'2021-03-17 06:54:34','2021-03-17 06:54:34'),(46,'INV-000046','TJS116000059466',0,0,'2021-03-17 13:47:05','2021-03-17 13:47:05'),(47,'INV-000047','TJS105100059478',0,0,'2021-03-17 14:09:28','2021-03-17 14:09:28'),(48,'INV-000048','TJS107700059504',0,0,'2021-03-18 05:34:34','2021-03-18 05:34:34'),(49,'INV-000049','TJS108700059523',0,0,'2021-03-18 06:15:13','2021-03-18 06:15:13'),(50,'INV-000050','TJS109200059563',0,0,'2021-03-18 07:50:59','2021-03-18 07:50:59'),(51,'INV-000051','TJS101200059592',0,0,'2021-03-18 08:30:32','2021-03-18 08:30:32'),(52,'INV-000052','TJS113200059662',0,0,'2021-03-18 10:56:47','2021-03-18 10:56:47'),(53,'INV-000053','TJS104300059706',0,0,'2021-03-18 12:36:08','2021-03-18 12:36:08'),(54,'INV-000054','TJS108700059717',0,0,'2021-03-18 12:51:43','2021-03-18 12:51:43'),(55,'INV-000055','TJS102100059762',0,0,'2021-03-18 13:38:36','2021-03-18 13:38:36'),(56,'INV-000056','TJS106500059792',0,0,'2021-03-19 05:24:31','2021-03-19 05:24:31'),(57,'INV-000057','TJS109400059802',0,0,'2021-03-19 06:08:51','2021-03-19 06:08:51'),(58,'INV-000058','TJS102300059832',0,0,'2021-03-19 08:28:53','2021-03-19 08:28:53'),(59,'INV-000059','TJS107000059877',0,0,'2021-03-19 11:39:26','2021-03-19 11:39:26'),(60,'INV-000060','TJS204500063115',0,0,'2021-04-09 07:51:54','2021-04-09 07:51:54'),(61,'INV-000061','TJS204100063905',0,0,'2021-04-12 08:29:10','2021-04-12 08:29:10');
/*!40000 ALTER TABLE `tbl_invoice` 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 AUTO_INCREMENT=822 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 */;
INSERT INTO `tbl_misc_category` VALUES (1,'Test','test','1561459093.jpg','1','1'),(2,'sdasdasd','sdasdasd','','1','1'),(3,'Fun','fun','1561462973.jpg','1','0'),(4,'Indian Receipes','indian-receipes','','1','0'),(5,'Travel Tips','travel-tips','','1','0'),(6,'Plan & Book','plan-book','','1','0');
/*!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=15 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');
/*!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') NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 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','0','1',''),(2,'dsadfsafd','first noti','no url','2021-01-31','1','0','0',''),(3,'test','first notification','sfdsf','2021-01-27','1','0','1','');
/*!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',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 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 */;
INSERT INTO `tbl_offers` VALUES (25,1,'Christmas Deals','1608711116.jpg','Book now and get 10% cashback','2020-12-25','http://local.superdmc.com/','1','1','1','1',0),(26,1,'test','1611833748.jpg','test123','2021-01-30','asdfasffs.com','0','1','1','1',0),(27,1,'ASDAD','1611833808.jpg','ADSJDA','2021-01-30','SADSAA','0','1','1','1',0),(28,1,'SPECIAL FARE MUMBAI-GOA','1615900842.jpg','BOM-GOI 15th August 21| GOI BOM 18th August 21','2021-05-15','https://www.ineedtrip.com/detail/tour-package-for-andaman%20and%20nicobar%20islands-india/andaman-honeymoon-package-18-3-24395-1-0.html','1','1','0','1',1),(29,1,'','','','0000-00-00','','0','1','1','1',1);
/*!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=4 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','cruise','<p>Get best deals on Cruise booking</p>\r\n','1617103697.jpg','','','','1','0'),(3,'dfsfsdf','dfsfsdf','<p>dzfsdf</p>\r\n','','sdfsd','sdfsdf','sdfddd','1','1');
/*!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) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`description` varchar(500) NOT NULL,
`url` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
`status` enum('0','1') CHARACTER SET armscii8 COLLATE armscii8_bin NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 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 */;
INSERT INTO `tbl_ourpartner` VALUES (2,'24*7 Customer Support','1616664641.jpg','We understand that you might need a friend’s help on your trip, whether it’s a recommendation, hotel support or anything else, we are here for you 24/7. For more info just click.\r\n','/24-7-support','1','1'),(3,'Director’s Desk','1617085735.jpg','Being Owner’s and coming from Travel background, we understand every point where Travelers need direct assistance. Making Travel easy and comfortable we have kept doors open for our every customer to share us their feedback anytime. Our Whats App No are shared and we are just a message away from your reach.\r\n ','/director’s-desk',NULL,'1'),(4,'Trusted by 12000+ travellers ','1616409821.jpg','We aim to always exceed our Traveler’s expectations by customizing personalized & exciting holidays to expand our already strong customer base. We’re committed to growing our global footprint together with our clients & aim to offer best products and services along with cutting-edge technology and dedicated round-the-clock customer support.','',NULL,'1'),(5,'4.5 Ratings in Facebook & Google','1616660392.jpg','We deliver what we promise & only promise what we can deliver. We never compromise with our pre-defined service standard (That’s why people love travelling with us & gave us happy ratings)','#',NULL,'1'),(6,'Certified By','1616661429.jpg','IATA International Air Transport Association \r\nOTOAI Outbound Tour Operators Association of India \r\nIATTE Indian Association of Travel and Tourism Experts','#',NULL,'1'),(7,'Crafted 1 lakh plus Itinerary','1616666336.jpg','We are creative & we love innovating new working ways. With a genuinely group of talented travel experts, great products & open minds, we have successfully completed more than 1 lakh delightful travels across the globe.','',NULL,'1');
/*!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_1609149246.jpg','0','1','1','0','image_1609150131.jpg',NULL,NULL,'','',''),(2,'Adventures',NULL,'banner_1609149578.jpg','0','1','0','0','image_1609149578.jpg',NULL,NULL,'','',''),(3,'Wild Life',NULL,'banner_1609149831.jpg','0','1','0','0','image_1609149831.jpg',NULL,NULL,'','',''),(4,'Beach',NULL,'banner_1609149929.jpg','0','1','1','0','image_1608798841.jpg',NULL,NULL,'','',''),(5,'Family',NULL,'banner_1609150083.jpg','0','1','1','0','image_1609150083.jpg',NULL,NULL,'','',''),(6,'Sports',NULL,NULL,'0','1','0','0','image_1591986725.jpg',NULL,NULL,'','',''),(7,'Cruise',NULL,NULL,'0','1','0','1','image_1591986743.jpg',NULL,NULL,'','',''),(8,'Religious',NULL,NULL,'0','1','0','1','image_1591986767.jpg',NULL,NULL,'','',''),(9,'Hill Station',NULL,NULL,'0','1','0','0','image_1591986790.jpg',NULL,NULL,'','',''),(10,'Heritage',NULL,NULL,'0','1','1','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 NOT NULL,
`ContSysId2` int NOT NULL,
`price` varchar(255) NOT NULL,
`popularCityType` tinyint NOT NULL DEFAULT '0',
`AboutImage` varchar(255) NOT NULL,
`AboutDescription` text NOT NULL,
`url` varchar(256) NOT NULL,
`opt` int NOT 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=48 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,'1615903005.jpg','','',0,'2021-01-13 05:32:57','2021-03-22 05:46:57',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,'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,'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,'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,'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,'1616420424.jpg','','',0,'2021-03-22 13:40:24','2021-03-22 13:40:24',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,'2021-03-22 13:42:02','2021-03-22 13:42:02',1,0),(47,'Goa In','Gorakhpur','Goa In, IN - Dabolim Arpt (GOI)','Gorakhpur, IN - Gorakhpur Arpt (GOP)','GOI','GOP',0,101,'1111',0,'1616485336.png','','',0,'2021-03-23 07:42:17','2021-03-23 07:42:17',1,1);
/*!40000 ALTER TABLE `tbl_popular_city` 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) NOT NULL,
`mobile` varchar(50) NOT NULL,
`location` text NOT NULL,
`google_map` text NOT NULL,
`otherLocations` text NOT NULL,
`status` enum('1','0') NOT NULL DEFAULT '1',
`whatsapp_no` varchar(25) NOT NULL,
`broucher` varchar(500) NOT NULL,
`image` varchar(256) 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 `tbl_query`
--
LOCK TABLES `tbl_query` WRITE;
/*!40000 ALTER TABLE `tbl_query` DISABLE KEYS */;
INSERT INTO `tbl_query` VALUES (1,'info@ineedtrip.com','','9250055233','9250055225','Office 3-6, First Floor, Shopper \'s Square Mall, R-14/8, Sector 14, Rajnagar, Ghaziabad, Uttar Pradesh 201001','<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3500.3581539198576!2d77.44629101503735!3d28.67893108239958!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390cf197ed8b25eb%3A0x4914b5ad7b9a68cd!2sI%20Need%20Trip!5e0!3m2!1sen!2sin!4v1609840310942!5m2!1sen!2sin\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>','','1','9250055233','','1_1561382440.jpg');
/*!40000 ALTER TABLE `tbl_query` 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=8 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','',NULL,'2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(2,'Middle East','Middle East','',NULL,'2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(3,'North India','North India','',NULL,'2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(4,'East African Islands','East African Islands','',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(5,'South India','South India','',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(6,'Southern Africa','Southern Africa','',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',NULL,NULL),(7,'Eastern Europe','Eastern Europe','',NULL,'2021-03-04 14:34:18','2021-03-04 14:34:18','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1',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 AUTO_INCREMENT=6 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 */;
INSERT INTO `tbl_seo` VALUES (1,'dfgdfg','dfgdfg','dfgdfg','1','1'),(2,'dfgdfgsdfsdfsdf sdfsdafsdf','dfgdfg','dfgdfg','1','1'),(3,'dfggd','dfgdfg','dfgdfg','0','1'),(4,'test','test','test','1','0'),(5,'sadfasdf','sdfsdfsdf','sdfsfd','1','0');
/*!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` varchar(255) NOT NULL,
`status` tinyint NOT NULL,
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 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/INeedTripTravels/',1,'0000-00-00 00:00:00'),(7,'LinkedIn','https://www.linkedin.com/company/i-need-trip-travels-pvt-ltd/mycompany/?viewAsMember=true',1,'0000-00-00 00:00:00'),(9,'YouTube','https://www.youtube.com/channel/UCnav0u1VMC42eG4LabiK2mA',1,'0000-00-00 00:00:00'),(10,'Instagram','https://www.instagram.com/i_need_trip/',1,'2020-12-28 17:36:13'),(11,'Twitter','https://twitter.com/home',1,'2021-03-05 17:45:35');
/*!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,
`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=5 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,NULL,NULL,'101','India','2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Kerala','kerala','Kerala (India)',NULL,NULL,3,NULL,NULL,'101','India','2021-02-26 12:00:38','2021-02-26 12:00:38','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Andaman and Nicobar Islands','andaman-and-nicobar-islands','Andaman and Nicobar Islands (India)',NULL,NULL,20,NULL,NULL,'101','India','2021-03-09 16:28:18','2021-03-09 16:28:18','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Delhi','delhi','Delhi (India)',NULL,NULL,4,NULL,NULL,'101','India','2021-03-18 20:11:35','2021-03-18 20:11:35','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,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,
PRIMARY KEY (`sid`),
KEY `parentId` (`sid`),
KEY `headerDisplay` (`status`),
KEY `parentIde` (`status`),
KEY `parentIdother` (`sid`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=203 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><strong>I Need Trip</strong> is a leading air ticketing & end to end tour package provider and travel agency. We have managed very swiftly and quickly to be a force to reckon with in the Travel Industry, more importantly, because of its focus on Exceptional Customer Service.</p>\r\n\r\n<p>We have vast experience in Travel & Hospitality of it not only through our travels but also because of the number of guests’ we have assisted over the years’. The practical wisdom we have gained helps us in addressing your needs and ensuring a seamless hassle-free tour.</p>\r\n\r\n<p>Our unique selling proposition lies in our ability to deliver high quality, end-to-end tour packages, including Products, Services, and Consulting to various organizations. Our solutions cater to large, mid-sized, and small organizations apart from individuals. The Company runs on an efficient workforce of customer-oriented staff whose main endeavor is to ensure you have <strong>“ A Journey with Sweet Memories”.</strong></p>\r\n','About I Need Trip','About Us','About Us','161_1615795330.jpg','Activate',0,'1','2018-01-12 00:00:00','2021-03-18 20:09:39',0),(162,'TERMS & CONDITIONS','terms-conditions','<p><strong>Policies for flight tickets:</strong></p>\r\n\r\n<ul>\r\n <li>Flights available on <a href=\"http://www.ineedtrip.com\">www.ineedtrip.com</a> are subject to the terms and conditions of the particular airline.</li>\r\n <li>Baggage, meals, and other services for a flight on a particular fare are as per that respective airline’s terms & conditions.</li>\r\n <li>INeedTrip only provides a facility to the customer to book a flight ticket. INeedTrip has no role to play in the utilization of any service of the flight, it’s always an agreement between the customer and the particular airline.</li>\r\n <li>As airlines have the right to cancel, reschedule, and reroute the flight without any prior notice, INeedTrip is not liable for such scenarios.</li>\r\n <li>I Need Trip is not liable to any loss, incidents, and tragedy that customer faces during utilization of any service.</li>\r\n <li>Adult age must be 12 + years, child age must be 02 to 12 years and an infant’s age must be under 24 months on the date of departure or else if, in such scenarios customer unable to board the flight or have to pay an extra amount to the airline, INeedTrip won’t be liable to anyone.</li>\r\n <li>INeedTrip shall not be liable to anyone in case booking/flights effected due to covid-19 pandemic, lockdown imposed by Government and any restrictions imposed by the Government.</li>\r\n <li>It is the customer’s/passenger's sole duty to stay updated on the state policies of covid-19 guidelines, INeedTrip plays no role regarding that.</li>\r\n</ul>\r\n\r\n<p><strong>Cancellation policies for Flight:</strong></p>\r\n\r\n<ul>\r\n <li>If a passenger wants to cancel/change a booking, an airline penalty with a INeedTrip service fee of INR 300/- per person will be applicable. ( Airline penalty will be applicable as per the particular airline )</li>\r\n <li>Cancellation, rescheduling, and any amendment can be done 04 hours prior to the departure time.</li>\r\n <li>For AirIndia and other international airlines, cancellation, rescheduling, and any amendment can be done 24 Hrs prior to the departure time.</li>\r\n <li>In case of no-show, the refund will be applicable as per the respective airline along with the deduction of the service fee of INR 300/-</li>\r\n <li>The convenience fee paid to INeedTrip is non-refundable.</li>\r\n <li>In case cancellation made directly with the airline, passengers must raise a refund request with the INeedTrip so the refund can be initiated.</li>\r\n <li>In case of partial cancellation, the INeedTrip convenience fee and any discount available through the coupon code or promo code will be deducted from the refund amount.</li>\r\n <li>Refund shall be processed as per the airline policy or airline fare rules.</li>\r\n <li>INeedTrip shall only initiate the refund amount to the same source account after receiving it from the respective airline.</li>\r\n <li>For any amendment to the booking, the customer shall be liable to pay any charges levied by the respective airline with INeedTrip service fee if INR 300/-</li>\r\n</ul>\r\n\r\n<p><strong>Cancellation Policy for packages:</strong></p>\r\n\r\n<ul>\r\n <li>Cancellation stage: 31 or more days prior to departure: 85% of package cost will be refunded on cancellation 31 days or more before departure.</li>\r\n <li>Cancellation stage: 31 to 20 days before departure: 40% of the package cost will be refunded on cancellation between 31 to 20 days before departure.</li>\r\n <li>Cancellation stage: 10 days or less before departure: 100% of the package cost will be charged as a penalty on cancellation 10 days before departure. The same will be applicable in case of NO SHOW by the client.</li>\r\n</ul>\r\n\r\n<p>The above-mentioned cancellation charges are applicable only against the main Tour and optional tours published by the Company. If the Client has booked any other services such as air tickets or any third-party product, then the Company is liable to recover cancellation charges as per cancellation terms of the respective airline or the cancellation terms of the respective third party. The Company is also liable to recover its service charges against booking and canceling such services for the Client.<br />\r\n<br />\r\nCancellation policies of all the 5-star hotels will be provided to the clients separately.</p>\r\n\r\n<p><strong>Booking Term</strong></p>\r\n\r\n<ul>\r\n <li>The validity of flight ticket pricing mentioned in the proposal will be only for 72 hours.</li>\r\n <li>A package can only be confirmed by making a minimum 20% amount of the invoice value, The travel company reserves the right to change the percentage as and when needed.</li>\r\n <li>We strongly recommend speaking to a company representative at least once before making the online advance payment (during business days)</li>\r\n <li>After every payment being received, an automatic payment confirmation mail will be sent</li>\r\n</ul>\r\n\r\n<p><strong>Terms & Conditions</strong></p>\r\n\r\n<ul>\r\n <li>The prices mentioned per person are on a twin sharing/quad sharing basis.</li>\r\n <li>Not more than 4 adults are allowed in one room.</li>\r\n <li>The extra occupant of the room shall be provided a mattress/roll away or an extra bed.</li>\r\n <li>The price of the Holiday Services does not include -\r\n <ul style=\"list-style-type:circle\">\r\n <li>Expenses of personal nature, such as laundry, telephone calls, room service, alcoholic beverages, mini bar charges, tips, portage, camera fees, etc.</li>\r\n <li>Any meals, services, and activities not specifically mentioned in the inclusions.</li>\r\n </ul>\r\n </li>\r\n <li>Airline seats and hotel rooms are subject to availability at the time of booking.</li>\r\n <li>In case of unavailability in the mentioned hotels, arrangements for alternate accommodation will be made in a hotel of similar quality & standard.</li>\r\n <li>Room heaters in hotel rooms will be provided at no extra cost.</li>\r\n <li>Transportation shall be provided as per the itinerary and will not be at disposal unless specified.</li>\r\n <li>Drivers may switch off AC during hill drives.</li>\r\n <li>I Need Trip reserves the right to modify the itinerary at any point, due to reasons including but not limited to Force Majeure events, strikes, fairs, festivals, weather conditions, traffic problems, overbooking of hotels/flights, cancellation / re-routing of flights, closure of / entry restrictions at a place of a visit, etc. While we will indeed do our best to make suitable alternate arrangements, We would not be held liable for any refunds/compensation claims arising out of this.</li>\r\n <li>As per the laid norms, it is mandatory for all guests to carry a valid Passport and ID cards. The passport should be valid for a minimum of 6 months from the date of completion of travel. Handwritten passports are not eligible as valid travel documents for travel. Passengers with children need to carry a Birth Certificate( In English ) along with a School ID card (ID proof should be valid for 6 months from the travel date)</li>\r\n <li>GST shall be applicable over and above the Travel package prices.</li>\r\n <li>For queries regarding cancellations and refunds, please refer to our Cancellation Policy.</li>\r\n <li>Disputes, if any, shall be subject to the exclusive jurisdiction of the courts in New Delhi.</li>\r\n <li>All Travel packages include standard or base category rooms unless selected otherwise</li>\r\n</ul>\r\n\r\n<p><strong>Service Delivery</strong></p>\r\n\r\n<ul>\r\n <li>Airtickets shall be provided within 7 days of payment.</li>\r\n <li>Hotel vouchers/confirmations shall be provided within 7 days of payment. In case of non-availability of the advertised hotel, similar category hotel vouchers/confirmations will be provided.</li>\r\n <li>All bookings/tickets/vouchers/confirmations will be delivered within 7days on clients registered email id at www.ineedtrip.com website.</li>\r\n</ul>\r\n\r\n<p><strong>Meal plan:</strong><br />\r\n<strong>EP</strong> - Accommodation only,<br />\r\n<strong>CP</strong> - Accommodation with breakfast,<br />\r\n<strong>MAP</strong> - Accommodation with breakfast, lunch, or dinner,<br />\r\n<strong>AP</strong> - Accommodation with breakfast, lunch, and dinner.</p>\r\n\r\n<p> </p>\r\n','TERMS & CONDITIONS','TERMS & CONDITIONS','TERMS & CONDITIONS','162_1615790004.jpg','Activate',0,'1','2018-01-12 00:00:00','2021-03-18 20:08:31',0),(202,'SERVICES','services','<p>services</p>\r\n','services','services','services','202_1617089226.jpg','Deactivate',0,'1','2021-03-19 15:12:41','2021-03-30 12:57:06',1),(195,'FLIGHTS','flights','','I Need Trip | Flights','flights,airfare,fare,','Book Domestic and International Flight Fares at best prices','195_1615527493.jpg','Deactivate',0,'1','2021-01-05 16:27:20','2021-03-23 18:58:57',0),(167,'PRIVACY POLICY','privacy-policy','<p><strong>I Need Trip, understands the importance of privacy of its customers and also assures all the customers to keep their personal data always confidential.</strong></p>\r\n\r\n<p><strong>Personal Identification Information:</strong></p>\r\n\r\n<p>We may require personal identification from customers in various ways, when user visit our website, register, place an order, subscribe to the newsletter, respond to a survey, fill out a form, following with other activities, services, features, or services been provided by our site. Personal data only may be asked from users only when they will be willing to share their information with us which may include their name, email address, phone number, credit card information, and social security number. Otherwise, Users are also free to visit our website getting unacknowledged and can refuse to share their personal data, which as result they’ll not be permitted to get engage in Site related activities.</p>\r\n\r\n<p><strong>Non-Personal Identification Information:</strong></p>\r\n\r\n<p>We may require non-personal identification information about Users whenever they interact with our site which may include the browser name, type of computer, and technical information about the User’s means of connection to our sites such as the Internet Service Provider, Operating system, and other technical related information.</p>\r\n\r\n<p><strong>Web Browser cookies</strong></p>\r\n\r\n<p>Our site may use “cookies” which will upgrade the user's browsing experience and sometimes to track information about them too. Users are allowed to set their web browser to refuse cookies or to get alerts whenever cookies are being sent which will somehow result to not get some parts of the site to function properly.</p>\r\n\r\n<p><strong>How Collected Information get Used</strong></p>\r\n\r\n<p>I Need Trip uses User’s Personal Information for the following purposes:</p>\r\n\r\n<ul>\r\n <li>To enhance and improve customer services</li>\r\n</ul>\r\n\r\n<p>Information provided by our Users helps us to be more efficient regarding the services being provided on our site.</p>\r\n\r\n<ul>\r\n <li>To Personalize Users experience</li>\r\n</ul>\r\n\r\n<p>The aggregate information provided by our users helps us to understand our Users as a group and their needs.</p>\r\n\r\n<ul>\r\n <li>To process payments</li>\r\n</ul>\r\n\r\n<p>Information provided by our User only gets used while placing an order with an intention to provide service to that order only. We don’t share this information with any outside parties except to the extent necessary to provide the services required by the User.</p>\r\n\r\n<ul>\r\n <li>To share your information with third parties</li>\r\n</ul>\r\n\r\n<p>User’s information can get shared or sell by us with a third party for marketing or other purposes.</p>\r\n\r\n<ul>\r\n <li>To run a survey, contest, promotion, or other site features</li>\r\n</ul>\r\n\r\n<p>To get our Users notified about the topics we think will be of interest to them which they agree to receive.</p>\r\n\r\n<ul>\r\n <li>To send periodic emails</li>\r\n</ul>\r\n\r\n<p>We may use your email address to send Users information and updates regarding their order. It may also be used to respond to the user's inquiries, questions, and/or other requests. If Users agree to subscribe to our company’s mailing list, they will receive emails that will include the company’s news, updates, latest services or products, information, etc. Users at any point are free to unsubscribe from receiving future emails, each mail will include detailed unsubscribe instructions at the bottom of the user may contact us via our website.</p>\r\n\r\n<p><strong>How we protect your information?</strong></p>\r\n\r\n<p>We embrace appropriate data collection, storage, and processing practices and security measures to protect against unauthorized access, alteration, disclosure, or destruction of your personal information, username, password, transaction information, and data stored on our site.</p>\r\n\r\n<p>Sensitive and private data exchange between the Site and its Users happens over the SSL secured communication channel and is encrypted and protected with digital signatures. Our Site is also in compliance with PCI vulnerability standards in order to create as secure of an environment as possible for Users.</p>\r\n\r\n<p><strong>Sharing your personal information</strong></p>\r\n\r\n<p>We may use a third-party service provider to help us operate administer activities on our behalf, such as conducting surveys or sending out newsletters. Your information may get shared with these third parties for those limited purposes with your full consent too.</p>\r\n\r\n<p><strong>Third-party websites</strong></p>\r\n\r\n<p>Users may find advertising or other content on our Site that link to the sites and services of our partners, suppliers, advertisers, sponsors, licensors, and other third parties. We have no control over the content or links that appear on these sites and are not responsible for the practices employed by websites linked to or from our site. These sites and services, including their content and links, may get constantly changing. These sites and services may have their own privacy and customer policies. Browsing and interaction on any other website, including websites that have a link to our Site, is subject to that website’s own terms and policies.</p>\r\n\r\n<p><strong>Advertising</strong></p>\r\n\r\n<p>Ads appearing on our site may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile non-personal identification information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This privacy policy does not cover the use of cookies by any advertisers.</p>\r\n\r\n<p><strong>Google Ad-sense</strong></p>\r\n\r\n<p>Some of the ads may be served by Google. Google’s use of the DART cookie enables it to serve ads to Users based on their visit to our site and other sites on the Internet. DART uses “non personally identifiable information” and does NOT track personal information about you, such as your name, email address, physical address, etc. You may opt-out of the use of the DART cookie by visiting the Google ad and content network privacy policy at http://www.google.com/privacy_ads.html</p>\r\n\r\n<p><strong>Compliance with children’s online privacy protection act</strong></p>\r\n\r\n<p><strong>Protecting the privacy of the very young is especially important. For that reason, we never collect or maintain information at our Site from those we actually know are under 13, and no part of our website is structured to attract anyone under 13.</strong></p>\r\n\r\n<p><strong>Changes to this privacy policy</strong></p>\r\n\r\n<p><strong>www.ineedtrip.com </strong>has the authority to update this privacy policy at any time. Whenever any update will occur, users get notified on the main page of the site, revise the updated date at the bottom of this page and send you an email. We encourage our Users to check this more often to get updated about how we are trying our best to protect the personal information we collect. You acknowledge and agree that it is your responsibility to review this privacy policy periodically and become aware of notifications.</p>\r\n\r\n<p><strong>Your Acceptance </strong></p>\r\n\r\n<p><strong>By using this Site, you signify your acceptance of this policy. If you do not agree to this policy, please do not use our Site. Your continued use of the Site following the posting of changes to this policy will be deemed your acceptance of those changes.</strong></p>\r\n\r\n<p><strong>Contacting us</strong></p>\r\n\r\n<p>If you have any questions about this Privacy Policy, the practices of this site, or your dealings with this site, please write or call us at:</p>\r\n\r\n<p>E-mail ID: info@ineedtrip.com</p>\r\n\r\n<p>Contact No: +91 9250055233</p>\r\n','PRIVACY POLICY','PRIVACY POLICY','PRIVACY POLICY','167_1615554135.jpg','Activate',0,'1','2018-01-12 00:00:00','2021-03-18 20:04:52',0),(184,'OFFERS','offers','','Offers','Offers','Offers','184_1615552322.jpg','Activate',0,'1','2018-04-12 15:25:37','2021-03-12 18:02:02',0),(185,'DOMESTIC TOUR PACKAGES','domestic-tour-packages','','DOMESTIC TOUR PACKAGES','DOMESTIC TOUR PACKAGES','DOMESTIC TOUR PACKAGES','185_1616068521.jpg','Deactivate',0,'1','2018-04-12 15:32:14','2021-03-18 17:25:21',0),(190,'CONTACT US','contact-us','<p>CONTACT US</p>\r\n','CONTACT US','CONTACT US','CONTACT US','190_1615792698.jpg','Activate',0,'1','2018-08-13 18:02:55','2021-03-15 12:48:19',0),(193,'INTERNATIONAL TOUR PACKAGES','international-tour-packages','<p>INTERNATIONAL TOUR PACKAGES</p>\r\n','I Need Trip / International Holidays','international holidays,tours,packages','Book International Holidays with Covid Cover Insurance and Easy EMI Options...Contact us for further details at 9250055233','193_1615796326.jpg','Deactivate',0,'1','2019-08-10 00:00:00','2021-03-23 19:03:52',0),(194,'BLOGS','blogs','','I Need Trip | Blog','blog,travelogues','Where to travel, when to travel, how to travel all at one place','194_1615790864.jpg','Activate',0,'1','2019-08-12 11:45:58','2021-03-26 13:18:05',2),(196,'VISA','visa','','I Need Trip | Visa','visa,tourist,work,business','Get Best Services and Prices for Visas all round the world.','196_1616056524.jpg','Deactivate',0,'1','2021-03-12 18:59:17','2021-03-23 18:56:35',1),(199,'ACTIVITIES','activities','<p>ACTIVITIES</p>\r\n','I Need Trip | Activities','activities,sightseeing,tours','ACTIVITIES','199_1616064737.jpg','Deactivate',0,'1','2021-03-16 16:09:08','2021-03-23 17:27:21',1),(197,'HOTEL','hotel','','I Need Trip | Hotels','hotels,stays,accommodation,villas','Best Hotel Deal @ Amazing Prices ','197_1616067548.jpg','Deactivate',0,'1','2021-03-16 16:13:23','2021-03-23 18:55:06',1),(198,'HOLIDAYS','holidays','','I Need Trip | Holidays','holidays,packages,leisure,fun','Best Holiday / Honeymoon attractive deals','198_1616055027.jpg','Deactivate',0,'1','2021-03-16 16:14:22','2021-03-23 17:37:26',1),(200,'24 7 SUPPORT','24-7-support','<p><strong>I Need Trip Help Center | 24x7 Customer Care Support</strong></p>\r\n\r\n<p>I Need Trip Help Center page lists out various types of issues that you may have encountered so that there can be quick resolution and you can go back to Travel Mode. For example, you can get more information regarding availability of hotel, package date change, help with returns (and refunds), cancellation and much more. I Need Trip Help Center also lists out more information that you may need regarding on Ground issues, extending stay, upgrading Tours, and more. The page has various filters listed out so that you can get your queries solved quickly, efficiently, and without a hassle. You can get I Need Trip Help Center number or even access I Need Trip Chat support if you need professional help regarding various subjects. The support executive will ensure speedy assistance so that your traveling experience is positive and enjoyable. You can even inform your loved ones of the support page so that they can properly get their grievances addressed as well. Once you have all your queries addressed, you can pull out your Destination list and Book for all your Travel requirements in one place. You can book during festive season sales to get your hands on some attractive deals online.</p>\r\n\r\n<p><ins><strong>FAQ'S</strong></ins></p>\r\n\r\n<h3><strong>Before Booking Queries</strong></h3>\r\n\r\n<p><strong>How do I book Package Online?</strong></p>\r\n\r\n<p>We have created such an easy booking module for our Travelers. For Booking Package online, Go to our package tab and search your destination. Now check all available options, select your package with live inventory and simply proceed with payment. Our Operations Team will share all associated information within 24hrs to your booking.</p>\r\n\r\n<p><strong>How Do I Prepare Completely Customize Itinerary?</strong></p>\r\n\r\n<p>Our Package booking module helps you with different itineraries for a single destination. You just have to select your preferable itinerary and share us your details on query form. Our Travel Specialist will call you and design a complete itinerary as per your requirements. Our Travel Specialist will even help you with suggestions to make the best suitable itinerary.</p>\r\n\r\n<p><strong>How Do I Make Group Booking?</strong></p>\r\n\r\n<p>When 10 or more people are traveling together, we count it as Group Booking. To make different arrangements for group or groups, we have a separate desk specially defined for Group Request. Direct Contact details and email ID's are mentioned at our contact us page.</p>\r\n\r\n<p><strong>How Do I Make Mice Booking?</strong></p>\r\n\r\n<p>Making special arrangements for Meetings, Incentives, Conference/ Conventions and Exhibitions/ Events, we count it as Mice Booking. To make special arrangements for Mice, we have a separate desk specially defined for Mice requests. Direct Contact details and email ID’s are mentioned at our contact us page.</p>\r\n\r\n<p><strong>How Do I get connected to Travel Specialist in company?</strong></p>\r\n\r\n<p>Our Booking portal is customer friendly, to avail any service like Flights // Hotels // Activities // Holidays anything can be booked easily. For any queries/suggestions related to any travel and tourism product, we have customer care support number active for 24*7. For Holiday Booking, you just need to fill the query form and our Travel Specialist for respective destination will get back to you within TAT time. Our Team adhere to Turn Around Time of 30 minutes and will help you with a customized itinerary.</p>\r\n\r\n<p><strong>What if I’m confused to final one Travel destination?</strong></p>\r\n\r\n<p>One common confusion during planning for a holiday is to select a perfect destination for your travel needs. So, the moment you click on our website, you will have multiple kind of holiday package options be it domestic or international. Select any destination and share all details in query form rest our Travel Specialist will do by understanding your taste and expectations from this Holiday. Their expertise and knowledge about destination will help you to finalize your package.</p>\r\n\r\n<p><em>"Whatever is in your bucket list, we can mke it into your budget list"</em></p>\r\n\r\n<p><strong>What is Maximum TAT Time to get revert on Query?</strong></p>\r\n\r\n<p>Turn Around Time for any request is most important in the service industry hence, as a leading Travel company I Need Trip always strive to exceed our customers’ expectations and meet their requirements within least time frame. So, our aim is to manage every new resquest within TAT time by looking after their needs and preferences.</p>\r\n\r\n<p><strong>Can the same specialist will handle my trip from start to finish?</strong></p>\r\n\r\n<p>Appointing a single executive to handle multiple services involved in a booking is always difficult, but our specialists are so dynamic that they will be handling your each and every query from selecting a tour package to a post travel feedback. Our executive who is assigned to make your bookings, will be available 24*7 on single call to keep you updated about every minute details.</p>\r\n\r\n<p><strong>In which language the Travel Specialist will communicate?</strong></p>\r\n\r\n<p>Our entire Team can communicate in English and Hindi. For group and Mice queries we have available Tour Leaders to handle every kind of specific language request. Our Team is efficient to handle any linguistic barrier to deliver you hassle-free services.</p>\r\n\r\n<p><strong>How Do Corporates can get on board with company?</strong></p>\r\n\r\n<p>I Need Trip is among those few brands who have created special forums for corporate and SMEs. Our B2E platform enables every corporate to make bookings with easy steps. Our Portal is so advanced to cater various types of queries with a separate 24*7 customer support desk. Kindly contact our corporate team or logon to <ins>partner.ineedtrip.com</ins> and register to get on board with I Need Trip.</p>\r\n\r\n<h3><strong>After Booking Queries</strong></h3>\r\n\r\n<p><strong>How Do I Track my Booking?</strong></p>\r\n\r\n<p>Our Pre Booking and Post Booking handling happens in chain system. Package Details finalized will be shared with each department for hassle free handling of booking. Our internal system is so advanced, that it will keep sending your updates regularly, so you just have to watch your email and WhatsApp notifications.</p>\r\n\r\n<p><strong>How Do I Track my Vouchers?</strong></p>\r\n\r\n<p>Once your Package Details are finalized, complete booking details will be shared with each department for hassle free handling of booking. Our internal system is so advanced, till the time your booking is under process, system will keep sending your updates regularly. After receiving confirmation from all counter parts, vouchers will be shared on email.</p>\r\n\r\n<p><strong>How Do I Track my Tax Invoices?</strong></p>\r\n\r\n<p>Invoice and challans for Flights // Hotels // Activities are issued at same time of making booking. In case of Holidays and Visa services, Our Account team get in touch with you for all details and thereafter share all accounting documents against your booking.</p>\r\n\r\n<p><strong>What if I miss my vouchers?</strong></p>\r\n\r\n<p>Missing your vouchers or tickets is not a problem now, While on tour you are always connected with us on WhatsApp group, just type a single message and we are present with solutions to any query.</p>\r\n\r\n<p><strong>How Do I cancel my Booking?</strong></p>\r\n\r\n<p>Cancellation for Flights // Hotels // Activities can be done easily from your account login. In case you want to cancel your Holiday Booking, help us with an email to our customer support or your Travel Specialist and they will share details within 24 hrs time. Cancellation of Holiday Booking under medical or emergency issue within 07 days to travel is treated under high priority and our team always try to help you with best solution.</p>\r\n\r\n<p><strong>How Do I change my Destination?</strong></p>\r\n\r\n<p>Our 24*7 customer support number provided on the voucher will help the traveller to connect to the local office directly. Your Travel Specialist always stays in touch for any kind of changes in Holidays Booking, so for any type of amendment you are actually just a message away from our reach.</p>\r\n\r\n<p><strong>How Do I upgrade my Booking?</strong></p>\r\n\r\n<p>Our 24*7 customer support number provided on the voucher will help the traveller to connect to the local office directly. Your Travel Specialist always stays in touch for any kind of amendment in Holidays Booking, so for any type of Upgrades you are actually just a message away from our reach.</p>\r\n\r\n<p><strong>How Do I Track my Visa appointment?</strong></p>\r\n\r\n<p>Our Pre Booking and Post Booking handling happens in chain system. Package Details finalized will be shared with each department for hassle free handling of booking. So, once complete booking is confirmed, our visa team will share required documents list and will apply for visa appointment as per your convenience.</p>\r\n\r\n<p><strong>What would do if I have booking related issue?</strong></p>\r\n\r\n<p>For Any Kind of Booking complaints, we have allocated Grievance desk specially. In case if any booking is not handled properly or Travellers are not happy with certain things, they can also drop message or email to directors of company. Complete contact information of Director’s are mentioned on Director desk page.</p>\r\n\r\n<p><strong>My booking is not confirmed but amount is debited from my account, how will I get a refund?</strong></p>\r\n\r\n<p>Online payments are monitored by our systems, For any uncompleted transaction, the transaction is kept on hold and we ask the traveller to share relevant proofs. This is done to make sure that the transaction is genuine and authorised. After verification payment will be credited back to Traveller account through same mode same time.</p>\r\n\r\n<p><strong>How much refund will I get if my flight booking is non-refundable?</strong></p>\r\n\r\n<p>Normally before booking flights, you have links available to check and verify cancellation policies for selected flight. In case your flight is non-refundable, then only limited taxes will be refunded by airline as per their policies. In case of medical emergency, some airlines give flexibility even for non-refundable ticket as per their policies.</p>\r\n\r\n<p><strong>The airline cancelled my flight and I want to claim a refund. What should I do?</strong></p>\r\n\r\n<p>You have the right to a flight cancellation refund if your flight has been cancelled. You will be offered an alternative flight, and you can request a different alternative if you prefer. But if none of the available flights suit your travel plans, you can request a full refund. In case you are in contact with our 24*7 support, then automatically they will do needful and amount will be refunded.</p>\r\n\r\n<p><strong>How can I add meal/baggage to my booking?</strong></p>\r\n\r\n<p>Booking Meal or Adding extra baggage is available while booking flight tickets. In case you want to add it later, then get connect on our customer support to help with you services.</p>\r\n\r\n<h3><strong>On Tour Queries</strong></h3>\r\n\r\n<p><strong>How Do I connect with local office?</strong></p>\r\n\r\n<p>Our 24*7 customer support number provided on the voucher will help the traveller to connect to the local office and the head office. Two days before the travel a WhatsApp group has been created between the traveller, the executive of local office and the head office to support uninterrupted travel.</p>\r\n\r\n<p><strong>How Do I connect with I need trip executive on tour?</strong></p>\r\n\r\n<p>Our 24*7 customer support number provided on the voucher will help the traveller to connect to the local office and the head office. Two days before the travel a WhatsApp group has been created between the traveller, the executive of local office and the head office to support uninterrupted travel.</p>\r\n\r\n<p><strong>What if Hotel Deny my Check inn?</strong></p>\r\n\r\n<p>Two days before the travel date our operations team again reconfirm your booking with hotelier and local Ground handler. However, if in case hotel denies the check inn just connect us on customer support and our executive helps you to check-inn within minutes to make you comfortable again.</p>\r\n\r\n<p><strong>What if I miss my flight?</strong></p>\r\n\r\n<p>If you missed a flight because you were late to the airport, you don't have any real rights, Under most domestic and international airline policies — which are outlined in the contract of carriage on the airline website — if you miss a connection, it will rebook you on the next flight at certain charge. For Holiday Bookings, We schedule the transfer to the airport 3-4 hours before the departure of flight. If, in case, it's still missed you can contact 24*7 helpline number, they will help you to resolve the issue.</p>\r\n\r\n<p><strong>What if my baggage is delayed at Airport?</strong></p>\r\n\r\n<p>Please contact Airline personnel in the arrival hall and report the same. A Property Irregularity Report will be filed and a copy will be given with a reference number for follow up action. The traveller needs to raise the complaint at 24*7 helpline number as well so that our local office will help the traveller to Pick and deliver the baggage at the concerned place.</p>\r\n\r\n<p><strong>What if I miss my Transfer?</strong></p>\r\n\r\n<p>If the traveller is delayed at the time of transfer then it is suggested to him to prior inform at the local office number mentioned on the voucher so that driver can wait.In case, the transfer is missed, he must inform so that the local office will reschedule the transfer.</p>\r\n\r\n<p><strong>What if I lost my passport on Tour?</strong></p>\r\n\r\n<p>Travelling on an International Holiday and loosing passport is always a alarming situation. Traveller has to visit the nearest Indian embassy or consulate and contact Our Specialist working for you at customer care. They are well prepared to handle such tough situations and can help you with procedure to follow. This is reason we always recommend our customers to buy a Travel Insurance before going on International Tour. Travel Insurance covers all such type of emergency situations.</p>\r\n\r\n<p><strong>What if I lost my baggage on Tour?</strong></p>\r\n\r\n<p>Travelling on an International Holiday and loosing luggage is again an alarming situation. Our Specialist working for you at customer care are well prepared to handle such tough situations and can help you with procedure to follow. This is reason we always suggest our customers to buy a Travel Insurance before going on International Tour. Travel Insurance covers all such type of emergency situations. We also recommend our Travellers to carry their expensive items like electronics, jewellery, cash along with them, as such things are not covered under Travel Insurance.</p>\r\n\r\n<p><strong>How Do I reschedule my Trip?</strong></p>\r\n\r\n<p>If the traveller wants to extend the trip or wants to come early or wants to modify the itinerary, you can reschedule it with the help of the contact number mentioned on the voucher or inform us on the whats app group created among the traveller and the local and head office</p>\r\n\r\n<p><strong>Can I get Medical Assistance on Trip?</strong></p>\r\n\r\n<p>Travelling with Travel Insurance on your Holiday or Business trip // Group or Mice Movement // Domestic Travel or International, always covers any type of medical emergency.</p>\r\n\r\n<p><strong>How can I stay in touch with my family and friends on a Trip?</strong></p>\r\n\r\n<p>On Every International Holiday, we suggest to buy an International sim card for temporary use. In case your number is not reachable or you cannot get in touch with your family, we always suggest you to take help of our Travel specialist who is in touch with you from Day 01. This way all important messages can be passed through our team and vice versa.</p>\r\n\r\n<p> </p>\r\n','I Need Trip Help Center | 24x7 Customer Care Support','support, customer service, travel 24x7 service, 24*7','We provide the best 24*7 Customer Service','200_1616054885.jpg','Activate',0,'1','2021-03-16 16:55:05','2021-03-26 22:19:01',1),(201,'DIRECTOR’S DESK','director’s-desk','<p>Being Owner’s and coming from Travel background, we understand every point where Travelers need direct assistance. Making Travel easy and comfortable we have kept doors open for our every customer to share us their feedback anytime. Our Whats App No are shared and we are just a message away from your reach.</p>\r\n\r\n<p><strong>What makes the difference when you travel with I Need Trip ??</strong></p>\r\n\r\n<p>What motivates you to travel is deeply personal, we understand that. Our purpose to create meaningful travel experiences comes from getting to know you and how you want to see the world.</p>\r\n\r\n<p><strong>We create 100% Tailor made Holidays</strong></p>\r\n\r\n<p>Your entire holiday is designed around your requirements, we always ensure you Explore your interests at your own speed. With us you can Select your preferred style of accommodation and to Create the perfect trip we have our specialists working for you.</p>\r\n\r\n<p><strong>Expert Knowledge</strong></p>\r\n\r\n<p>All our specialists have travelled mostly to destinations you are planning for, The same specialist will handle your trip from start to finish and Make the most of your time and budget. What makes the difference is a good experience converts to outstanding till you complete your Trip with us. Our Hand Picked local partners will take care for your Holiday and will offer you real insight into their country.</p>\r\n\r\n<p><strong>Value for Money</strong></p>\r\n\r\n<p>We don't claim to be the cheapest, but we do believe we offer very good value. In Last 10 years our services are booked by over 12000+ Travelers, I need trip.com has been named top Tour Operator based on the breadth of destinations and the added value we offer. Our Social Media is full of positive reviews of Travellers from pan India.</p>\r\n\r\n<p><strong>Financial Security</strong></p>\r\n\r\n<p>For your peace of mind, all of the holidays & bookings on this website are protected. We are Active Members of Organizations like <strong>IATA, OTOAI, IATTE</strong>. We are also recognized by mostly every Tourism Board for promoting their destinations for Domestic and international Holidays. Being a Pvt Limited company and incorporated under the companies act, we adhere to law and taxation policy implemented by Govt Of India.</p>\r\n','I Need Trip I Director’s Desk','Director’s Desk','Director’s Desk','201_1616070347.jpg','Activate',0,'1','2021-03-18 16:52:55','2021-03-23 17:22:01',1);
/*!40000 ALTER TABLE `tbl_static_pages` 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 AUTO_INCREMENT=135 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 */;
INSERT INTO `tbl_temp_data` VALUES (1,'4-8837225566_0DELBOMSG8153_17097741229884559','{\"BookingData\":[{\"bookingId\":\"TJS108900034381\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-8837225566_0DELBOMSG8153_17097741229884559\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-09T06:20\",\"LocalFromTime\":\"2020-12-09 06:20\",\"FromUTCTime\":\"2020-12-09T06:20\",\"LocalToTime\":\"2020-12-09 08:35\",\"ToUTCTime\":\"2020-12-09T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 09 Dec\",\"ArrivalDateTxt\":\"Wed, 09 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4072.7,\"PublishedFareTxt\":\"4,073\",\"ApiResultIndex\":\"4-8837225566_0DELBOMSG8153_17097741229884559\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":688.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4072.7,\"PublishedFare\":4072.7,\"OfferedFare\":4072.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-8837225566_0DELBOMSG8153_17097741229884559\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":688.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-09T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-09T06:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"284\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"09\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-09\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=09%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1941-07-21\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-06 18:16:32\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"31\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"366\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"31\",\"CustomerMemSysId\":[\"31\"],\"flight_booking_id\":[\"1\"]},\"_sessiondata\":null}','2020-11-06 18:16:40'),(2,'16-7928554262_12DELBLRI5740BLRBOMI5306_17099112874718627','{\"BookingData\":[{\"bookingId\":\"TJS106100034401\",\"FlightNumber\":\"I5-740\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"16-7928554262_12DELBLRI5740BLRBOMI5306_17099112874718627\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"00:30\",\"TravelDate\":\"2020-12-03T07:55\",\"LocalFromTime\":\"2020-12-03 07:55\",\"FromUTCTime\":\"2020-12-03T07:55\",\"LocalToTime\":\"2020-12-04 00:30\",\"ToUTCTime\":\"2020-12-04T00:30\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":720,\"LAYOVERDuration\":\"12h 0m\",\"FlyingMinutes\":995,\"DepartureDateTxt\":\"Thu, 03 Dec\",\"ArrivalDateTxt\":\"Fri, 04 Dec\",\"FlightDuration\":\"16h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3917.7,\"PublishedFareTxt\":\"3,918\",\"ApiResultIndex\":\"16-7928554262_12DELBLRI5740BLRBOMI5306_17099112874718627\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3277,\"Tax\":640.7,\"YQTax\":0,\"OtherCharges\":355,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":168,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3917.7,\"PublishedFare\":3917.7,\"OfferedFare\":3917.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"16-7928554262_12DELBLRI5740BLRBOMI5306_17099112874718627\",\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":640.7,\"BaseFareCal\":3277,\"BaseFare\":3277,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":168,\"MFT\":2.7,\"OT\":355,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":false,\"CabinBaggage\":false}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2020-12-03T10:40\",\"SegFlightNumber\":\"I5-740\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-03T07:55\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":720,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"12h 0m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-04T00:30\",\"SegFlightNumber\":\"I5-306\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2020-12-03T22:40\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"00:30\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"PBAA\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"PBAB\",\"Price\":3780,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"PBAC\",\"Price\":7580,\"Weight\":\"25KG\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"PBAD\",\"Price\":11580,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"PBAF\",\"Price\":19000,\"Weight\":\"40KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"LZCM\",\"Price\":0,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KPCM\",\"Price\":0,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KFCM\",\"Price\":0,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KACM\",\"Price\":0,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"JMCM\",\"Price\":0,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"JDCM\",\"Price\":0,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"JCAI\",\"Price\":0,\"Description\":\"Juice\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"HVCM\",\"Price\":0,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"GACM\",\"Price\":0,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"APCM\",\"Price\":0,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"MMAI\",\"Price\":100,\"Description\":\"Fruit Salad + Ice Cream\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KFCB\",\"Price\":200,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"LZCB\",\"Price\":250,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KPCB\",\"Price\":250,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"KACB\",\"Price\":250,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"JMCB\",\"Price\":250,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"JDCB\",\"Price\":250,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"HVCB\",\"Price\":250,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"APCB\",\"Price\":250,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"},{\"Currency\":\"INR\",\"key\":\"226\",\"Code\":\"GACB\",\"Price\":300,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"03\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-03\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=03%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1996-10-07\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-06 18:42:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"367\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_id\":[\"2\"]},\"_sessiondata\":null}','2020-11-06 18:43:24'),(3,'4-6408219336_0DELBOMSG8153_17344425003667152','{\"BookingData\":[{\"bookingId\":\"TJS106700034675\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-6408219336_0DELBOMSG8153_17344425003667152\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-08T06:20\",\"LocalFromTime\":\"2020-12-08 06:20\",\"FromUTCTime\":\"2020-12-08T06:20\",\"LocalToTime\":\"2020-12-08 08:35\",\"ToUTCTime\":\"2020-12-08T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 08 Dec\",\"ArrivalDateTxt\":\"Tue, 08 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4072.7,\"PublishedFareTxt\":\"4,073\",\"ApiResultIndex\":\"4-6408219336_0DELBOMSG8153_17344425003667152\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":688.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4072.7,\"PublishedFare\":4072.7,\"OfferedFare\":4072.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-6408219336_0DELBOMSG8153_17344425003667152\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":688.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-08T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-08T06:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"08\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-08\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=08%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1941-07-21\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-09 14:48:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"31\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"368\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"31\",\"CustomerMemSysId\":[\"31\"],\"flight_booking_id\":[\"3\"]},\"_sessiondata\":{\"EmailId\":\"sudipta@catpl.co.in \",\"CustomerSysId\":\"90444\",\"AgencySysId\":\"5155\",\"FirstName\":\"Sudipta \",\"LastName\":\" \",\"Password_cu\":\"d6c722e0ca771ab08b789d79e6823a8b\",\"ContactNo1\":\"9818999760\"}}','2020-11-09 14:48:18'),(4,'4-9505264767_4DELHYDSG472HYDBOMSG704_17345500379979545','{\"BookingData\":[{\"bookingId\":\"TJS109700034684\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-9505264767_4DELHYDSG472HYDBOMSG704_17345500379979545\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-11-12T20:45\",\"LocalFromTime\":\"2020-11-12 20:45\",\"FromUTCTime\":\"2020-11-12T20:45\",\"LocalToTime\":\"2020-11-13 07:05\",\"ToUTCTime\":\"2020-11-13T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Thu, 12 Nov\",\"ArrivalDateTxt\":\"Fri, 13 Nov\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4663.7,\"PublishedFareTxt\":\"4,664\",\"ApiResultIndex\":\"4-9505264767_4DELHYDSG472HYDBOMSG704_17345500379979545\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1279.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4663.7,\"PublishedFare\":4663.7,\"OfferedFare\":4663.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-9505264767_4DELHYDSG472HYDBOMSG704_17345500379979545\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1279.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-11-12T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-11-12T20:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-11-13T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-11-13T05:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"995\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"12\\/11\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/11\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-11-12\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=12%2F11%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"manisha.matai765@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8948408390\",\"FirstName\":\"Manisha\",\"LastName\":\"Matai\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1993-12-13\",\"Address\":\"LiG95 Barra 4\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-09 15:07:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"50\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"369\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"50\",\"CustomerMemSysId\":[\"50\"],\"flight_booking_id\":[\"4\"]},\"_sessiondata\":null}','2020-11-09 15:07:24'),(5,'4-5092587265_4DELHYDSG472HYDBOMSG704_17346589245547283','{\"BookingData\":[{\"bookingId\":\"TJS106100034686\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"4-5092587265_4DELHYDSG472HYDBOMSG704_17346589245547283\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-11-12T20:45\",\"LocalFromTime\":\"2020-11-12 20:45\",\"FromUTCTime\":\"2020-11-12T20:45\",\"LocalToTime\":\"2020-11-13 07:05\",\"ToUTCTime\":\"2020-11-13T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Thu, 12 Nov\",\"ArrivalDateTxt\":\"Fri, 13 Nov\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4663.7,\"PublishedFareTxt\":\"4,664\",\"ApiResultIndex\":\"4-5092587265_4DELHYDSG472HYDBOMSG704_17346589245547283\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1279.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4663.7,\"PublishedFare\":4663.7,\"OfferedFare\":4663.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"4-5092587265_4DELHYDSG472HYDBOMSG704_17346589245547283\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1279.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-11-12T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-11-12T20:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-11-13T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-11-13T05:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":null,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"252\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"12\\/11\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/11\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-11-12\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=12%2F11%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"bmatai12@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8604444404\",\"FirstName\":\"Bhupesh\",\"LastName\":\"Matai\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1993-12-13\",\"Address\":\"LIG 95\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-09 15:24:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"51\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"370\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_id\":[\"5\"]},\"_sessiondata\":null}','2020-11-09 15:24:27'),(6,'5-9929230782_0LKODEL6E2425_17348289400073329,5-9929230782_0DELLKO6E906_17348289377910175','{\"BookingData\":[{\"bookingId\":\"TJS102000034702\",\"FlightNumber\":\"6E-2425\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"5-9929230782_0LKODEL6E2425_17348289400073329\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2020-11-17T16:40\",\"LocalFromTime\":\"2020-11-17 16:40\",\"FromUTCTime\":\"2020-11-17T16:40\",\"LocalToTime\":\"2020-11-17 17:45\",\"ToUTCTime\":\"2020-11-17T17:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 17 Nov\",\"ArrivalDateTxt\":\"Tue, 17 Nov\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"16028\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"LKO\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3176.7,\"PublishedFareTxt\":\"3,177\",\"ApiResultIndex\":\"5-9929230782_0LKODEL6E2425_17348289400073329\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2450,\"Tax\":726.7,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3176.7,\"PublishedFare\":3176.7,\"OfferedFare\":3176.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"5-9929230782_0LKODEL6E2425_17348289400073329\",\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":726.7,\"BaseFareCal\":2450,\"BaseFare\":2450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":128,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2020-11-17T17:45\",\"SegFlightNumber\":\"6E-2425\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2020-11-17T16:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":null,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"884\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"884\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"884\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"884\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"FilterPrice\":\"\"},{\"bookingId\":\"TJS102000034702\",\"FlightNumber\":\"6E-906\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"apiTraceId\":\"5-9929230782_0DELLKO6E906_17348289377910175\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2020-11-25T08:40\",\"LocalFromTime\":\"2020-11-25 08:40\",\"FromUTCTime\":\"2020-11-25T08:40\",\"LocalToTime\":\"2020-11-25 09:50\",\"ToUTCTime\":\"2020-11-25T09:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 25 Nov\",\"ArrivalDateTxt\":\"Wed, 25 Nov\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"16028\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":71,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2595.7,\"PublishedFareTxt\":\"2,596\",\"ApiResultIndex\":\"5-9929230782_0DELLKO6E906_17348289377910175\",\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1994,\"Tax\":601.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":104,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2595.7,\"PublishedFare\":2595.7,\"OfferedFare\":2595.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":2,\"IsRefundableTxt\":\"Partial Refundable\",\"PriceID\":\"5-9929230782_0DELLKO6E906_17348289377910175\",\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":601.7,\"BaseFareCal\":1994,\"BaseFare\":1994,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":104,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2020-11-25T09:50\",\"SegFlightNumber\":\"6E-906\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-11-25T08:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":null,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":71,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Lucknow(LKO)\",\"mytrip_city_to\":\"Delhi(DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"LKO\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Lucknow, IN - Amausi Airport (LKO)\",\"destination\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"departure_date\":\"17\\/11\\/2020\",\"return_date\":\"25\\/11\\/2020\",\"from_mytrip_city\":\" IN - Amausi Airport (LKO)\",\"to_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"LKO\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"LKO\",\"to\":\"DEL\",\"sourceCityText\":\"Lucknow, IN - Amausi Airport (LKO)\",\"destinationCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"sourceCityId\":\"16028\",\"destinationCityId\":\"7701\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/11\\/2020\",\"return_dates\":\"25\\/11\\/2020\",\"strDepatureDate\":\"2020-11-17\",\"strReturnDate\":\"2020-11-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Lucknow%28LKO%29&mytrip_city_to=Delhi%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=LKO&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Lucknow%2C+IN+-+Amausi+Airport+%28LKO%29&destination=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&departure_date=17%2F11%2F2020&return_date=25%2F11%2F2020&from_mytrip_city=+IN+-+Amausi+Airport+%28LKO%29&to_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"namansingh1994@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8299811436\",\"FirstName\":\"Naman\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1994-01-16\",\"Address\":\"127\\/714 S Block, Juhi Hamirpur Road\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-09 15:52:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"52\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"371\"],[\"372\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_id\":[\"6\",\"7\"]},\"_sessiondata\":null}','2020-11-09 15:53:02'),(7,'5-1142407220_0DELBOM6E6957_18124863464677828','{\"BookingData\":[{\"bookingId\":\"TJS108700037228\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1142407220_0DELBOM6E6957_18124863464677828\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2020-11-18T19:20\",\"LocalFromTime\":\"2020-11-18 19:20\",\"FromUTCTime\":\"2020-11-18T19:20\",\"LocalToTime\":\"2020-11-18 21:35\",\"ToUTCTime\":\"2020-11-18T21:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 18 Nov\",\"ArrivalDateTxt\":\"Wed, 18 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":14909.099999999999,\"PublishedFareTxt\":\"14,909\",\"ApiResultIndex\":\"5-1142407220_0DELBOM6E6957_18124863464677828\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12760,\"Tax\":2149.1000000000004,\"YQTax\":0,\"OtherCharges\":1140,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":656,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":14909.099999999999,\"PublishedFare\":14909.099999999999,\"OfferedFare\":14909.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1142407220_0DELBOM6E6957_18124863464677828\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":14909.1,\"oldFare\":15789.1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1447.4,\"BaseFareCal\":8800,\"BaseFare\":8800,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":452,\"MFT\":5.4,\"OT\":760,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":701.7,\"BaseFareCal\":3960,\"BaseFare\":3960,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":204,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-11-18T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-11-18T19:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"18\\/11\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"18\\/11\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-11-18\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=18%2F11%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"0\",\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1996-10-07\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 15:47:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"5\",\"Contacts\":\"9634022688\",\"FirstName\":\"surbhi\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1997-02-06\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 15:47:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"4\",\"Relation\":\"5\",\"Contacts\":\"9634022688\",\"FirstName\":\"kanishka\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"2015-08-6\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 15:47:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPB\",\"Price\":\"4000\",\"Weight\":\"10 Kg\"},\"32\":{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPD\",\"Price\":\"12000\",\"Weight\":\"30 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"373\",\"374\",\"375\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"32\",0],\"flight_booking_id\":[\"8\"]},\"_sessiondata\":null}','2020-11-18 15:48:22'),(8,'5-0181188884_8DELBHO6E2061BHOBOM6E661_18126932776416259,5-0181188884_14BOMHYD6E409HYDDEL6E5002_18126932676819278','{\"BookingData\":[{\"bookingId\":\"TJS103700037240\",\"FlightNumber\":\"6E-2061\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0181188884_8DELBHO6E2061BHOBOM6E661_18126932776416259\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2020-12-01T07:00\",\"LocalFromTime\":\"2020-12-01 07:00\",\"FromUTCTime\":\"2020-12-01T07:00\",\"LocalToTime\":\"2020-12-01 13:35\",\"ToUTCTime\":\"2020-12-01T13:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Bhopal\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Tue, 01 Dec\",\"ArrivalDateTxt\":\"Tue, 01 Dec\",\"FlightDuration\":\"6h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":30,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11591.099999999999,\"PublishedFareTxt\":\"11,591\",\"ApiResultIndex\":\"5-0181188884_8DELBHO6E2061BHOBOM6E661_18126932776416259\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9450,\"Tax\":2141.1000000000004,\"YQTax\":0,\"OtherCharges\":1290,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11591.099999999999,\"PublishedFare\":11591.099999999999,\"OfferedFare\":11591.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0181188884_8DELBHO6E2061BHOBOM6E661_18126932776416259\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1427.4,\"BaseFareCal\":6300,\"BaseFare\":6300,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":332,\"MFT\":5.4,\"OT\":860,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":713.7,\"BaseFareCal\":3150,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":430,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Bhoj Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhopal\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHO\",\"destinationArrTime\":\"2020-12-01T08:25\",\"SegFlightNumber\":\"6E-2061\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-01T07:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":205,\"NoOfSeatAvailable\":30,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Bhopal\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Raja Bhoj Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bhopal\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-01T13:35\",\"SegFlightNumber\":\"6E-661\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BHO\",\"originDepTime\":\"2020-12-01T11:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":30,\"strDepartureDtTime\":\"11:50\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"806\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"806\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"806\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"806\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"FilterPrice\":\"\"},{\"bookingId\":\"TJS103700037240\",\"FlightNumber\":\"6E-409\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0181188884_14BOMHYD6E409HYDDEL6E5002_18126932676819278\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2020-12-04T06:30\",\"LocalFromTime\":\"2020-12-04 06:30\",\"FromUTCTime\":\"2020-12-04T06:30\",\"LocalToTime\":\"2020-12-04 13:00\",\"ToUTCTime\":\"2020-12-04T13:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Fri, 04 Dec\",\"ArrivalDateTxt\":\"Fri, 04 Dec\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11270.099999999999,\"PublishedFareTxt\":\"11,270\",\"ApiResultIndex\":\"5-0181188884_14BOMHYD6E409HYDDEL6E5002_18126932676819278\",\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9000,\"Tax\":2270.1000000000004,\"YQTax\":0,\"OtherCharges\":1443,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11270.099999999999,\"PublishedFare\":11270.099999999999,\"OfferedFare\":11270.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0181188884_14BOMHYD6E409HYDDEL6E5002_18126932676819278\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1513.4,\"BaseFareCal\":6000,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":316,\"MFT\":5.4,\"OT\":962,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":756.7,\"BaseFareCal\":3000,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-12-04T07:50\",\"SegFlightNumber\":\"6E-409\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2020-12-04T06:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":160,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2020-12-04T13:00\",\"SegFlightNumber\":\"6E-5002\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-12-04T10:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"10:30\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"631\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"631\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"631\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"631\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"01\\/12\\/2020\",\"return_date\":\"04\\/12\\/2020\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"01\\/12\\/2020\",\"return_dates\":\"04\\/12\\/2020\",\"strDepatureDate\":\"2020-12-01\",\"strReturnDate\":\"2020-12-04\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=01%2F12%2F2020&return_date=04%2F12%2F2020&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"0\",\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1996-10-07\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 16:16:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"5\",\"Contacts\":\"9634022688\",\"FirstName\":\"surbhi\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1997-02-06\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 16:16:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"4\",\"Relation\":\"1\",\"Contacts\":\"9634022688\",\"FirstName\":\"kanishka\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"2016-05-9\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-18 16:16:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":{\"49\":{\"Currency\":\"INR\",\"key\":\"631\",\"Code\":\"XBPB\",\"Price\":\"4000\",\"Weight\":\"10 Kg\"}},\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"376\",\"377\",\"378\"],[\"379\",\"380\",\"381\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"32\",0],\"flight_booking_id\":[\"9\",\"10\"]},\"_sessiondata\":null}','2020-11-18 16:17:43'),(9,'16-2509546922_0DELBBII5814BBIBOMI5630_18642387030021276','{\"BookingData\":[{\"bookingId\":\"TJS107400038757\",\"FlightNumber\":\"I5-814\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"16-2509546922_0DELBBII5814BBIBOMI5630_18642387030021276\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"21:20\",\"TravelDate\":\"2020-12-16T07:55\",\"LocalFromTime\":\"2020-12-16 07:55\",\"FromUTCTime\":\"2020-12-16T07:55\",\"LocalToTime\":\"2020-12-16 21:20\",\"ToUTCTime\":\"2020-12-16T21:20\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"Bhubaneswar\",\"GroundTime\":505,\"LAYOVERDuration\":\"8h 25m\",\"FlyingMinutes\":805,\"DepartureDateTxt\":\"Wed, 16 Dec\",\"ArrivalDateTxt\":\"Wed, 16 Dec\",\"FlightDuration\":\"13h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":115,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":23876.1,\"PublishedFareTxt\":\"23,876\",\"ApiResultIndex\":\"16-2509546922_0DELBBII5814BBIBOMI5630_18642387030021276\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21666,\"Tax\":2210.1000000000004,\"YQTax\":0,\"OtherCharges\":1065,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":1092,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":23876.1,\"PublishedFare\":24230.1,\"OfferedFare\":24230.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"16-2509546922_0DELBBII5814BBIBOMI5630_18642387030021276\",\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1473.4,\"BaseFareCal\":14444,\"BaseFare\":14444,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":728,\"MFT\":5.4,\"OT\":710,\"MU\":0,\"YR\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":736.7,\"BaseFareCal\":7222,\"BaseFare\":7222,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":364,\"MFT\":2.7,\"OT\":355,\"MU\":0,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Biju Patnaik Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhubaneswar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BBI\",\"destinationArrTime\":\"2020-12-16T10:20\",\"SegFlightNumber\":\"I5-814\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-16T07:55\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":505,\"NoOfSeatAvailable\":115,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"8h 25m\",\"LAYOVERCity\":\"Bhubaneswar\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Biju Patnaik Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bhubaneswar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-16T21:20\",\"SegFlightNumber\":\"I5-630\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"BBI\",\"originDepTime\":\"2020-12-16T18:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":115,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"21:20\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAA\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAB\",\"Price\":3780,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAC\",\"Price\":7580,\"Weight\":\"25KG\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAD\",\"Price\":11580,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAF\",\"Price\":19000,\"Weight\":\"40KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"LZCM\",\"Price\":0,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KPCM\",\"Price\":0,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KFCM\",\"Price\":0,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KACM\",\"Price\":0,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"JMCM\",\"Price\":0,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"JDCM\",\"Price\":0,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"JCAI\",\"Price\":0,\"Description\":\"Juice\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"HVCM\",\"Price\":0,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"GACM\",\"Price\":0,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"APCM\",\"Price\":0,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"MMAI\",\"Price\":149,\"Description\":\"Fruit Salad + Ice Cream\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"LZCB\",\"Price\":350,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KPCB\",\"Price\":350,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KFCB\",\"Price\":350,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KACB\",\"Price\":350,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"JDCB\",\"Price\":350,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"HVCB\",\"Price\":350,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"GACB\",\"Price\":350,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"APCB\",\"Price\":350,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"16\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"16\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-16\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=16%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9634022688\",\"FirstName\":\"muskan\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1997-10-04\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-24 15:24:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"33\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9634022688\",\"FirstName\":\"jsad\",\"LastName\":\"ghgs\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1998-09-12\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-24 15:24:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"34\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"1\",\"Contacts\":\"9634022688\",\"FirstName\":\"hgfhg\",\"LastName\":\"vhgvh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"2016-08-7\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-24 15:24:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":{\"33\":{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"KFCM\",\"Price\":\"0\",\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"}},\"SelectedBaggSessionNew\":[{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"PBAB\",\"Price\":\"3780\",\"Weight\":\"20KG\"}],\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"382\",\"383\",\"384\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"33\",\"34\",0],\"flight_booking_id\":[\"11\"]},\"_sessiondata\":null}','2020-11-24 15:24:57'),(10,'4-0167709347_0DELBOMSG8153_18720553045001146','{\"BookingData\":[{\"bookingId\":\"TJS106400038933\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0167709347_0DELBOMSG8153_18720553045001146\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-01T06:20\",\"LocalFromTime\":\"2020-12-01 06:20\",\"FromUTCTime\":\"2020-12-01T06:20\",\"LocalToTime\":\"2020-12-01 08:35\",\"ToUTCTime\":\"2020-12-01T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 01 Dec\",\"ArrivalDateTxt\":\"Tue, 01 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4629.7,\"PublishedFareTxt\":\"4,630\",\"ApiResultIndex\":\"4-0167709347_0DELBOMSG8153_18720553045001146\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3535,\"Tax\":1094.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":4629.7,\"PublishedFare\":4747.7,\"OfferedFare\":4747.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0167709347_0DELBOMSG8153_18720553045001146\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1094.7,\"BaseFareCal\":3535,\"BaseFare\":3535,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":182,\"MFT\":2.7,\"OT\":395,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-01T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-01T06:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"01\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"01\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-01\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=01%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"bmatai12@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8604444404\",\"FirstName\":\"Bhupesh\",\"LastName\":\"Matai\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1993-12-13\",\"Address\":\"LIG 95\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-25 13:05:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"35\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":{\"35\":{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"LCVS\",\"Price\":\"250\",\"Description\":\"Low cal salad Vegetarian\"}},\"SelectedBaggSessionNew\":{\"35\":{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"EB05\",\"Price\":\"1948\",\"Weight\":\"5KG\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"385\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"35\",\"CustomerMemSysId\":[\"35\"],\"flight_booking_id\":[\"12\"]},\"_sessiondata\":null}','2020-11-25 13:06:41'),(11,'10-2326960703_0DELCDGAF225_18724690125961136','{\"BookingData\":[{\"bookingId\":\"TJS113500038941\",\"FlightNumber\":\"AF-225\",\"AirlineName\":\"Air France\",\"AirlineCode\":\"AF\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2326960703_0DELCDGAF225_18724690125961136\",\"AirlineSysId\":\"38\",\"DepartureTime\":\"04:05\",\"ArrivalTime\":\"09:05\",\"TravelDate\":\"2020-12-01T04:05\",\"LocalFromTime\":\"2020-12-01 04:05\",\"FromUTCTime\":\"2020-12-01T04:05\",\"LocalToTime\":\"2020-12-01 09:05\",\"ToUTCTime\":\"2020-12-01T09:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":570,\"DepartureDateTxt\":\"Tue, 01 Dec\",\"ArrivalDateTxt\":\"Tue, 01 Dec\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20822\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CDG\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":29789.7,\"PublishedFareTxt\":\"29,790\",\"ApiResultIndex\":\"10-2326960703_0DELCDGAF225_18724690125961136\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AF.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14360,\"Tax\":15429.7,\"YQTax\":1129,\"OtherCharges\":547,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":1368,\"CarrierMiscFee\":11868,\"MUFee\":500,\"intPublishedFare\":29789.7,\"PublishedFare\":30025.7,\"OfferedFare\":30025.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2326960703_0DELCDGAF225_18724690125961136\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":15429.7,\"BaseFareCal\":14360,\"BaseFare\":14360,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1129,\"AGST\":1368,\"MFT\":2.7,\"OT\":547,\"MU\":500,\"YR\":11868,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0PC\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Charles De Gaulle Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Paris\",\"destinationCountryName\":\"France\",\"destinationAirportCode\":\"CDG\",\"destinationArrTime\":\"2020-12-01T09:05\",\"SegFlightNumber\":\"AF-225\",\"AirlineCode\":\"AF\",\"AirlineName\":\"Air France\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-01T04:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"0PC\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":570,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:05\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"9h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2E\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/AF.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"611\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Paris(CDG)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"CDG\",\"ContSysId\":\"76\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Paris, FR - Charles De Gaulle (Roissy) Airport (CDG)\",\"departure_date\":\"01\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" FR - Charles De Gaulle (Roissy) Airport (CDG)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"CDG\",\"from\":\"DEL\",\"to\":\"CDG\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Paris, FR - Charles De Gaulle (Roissy) Airport (CDG)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"20822\",\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"01\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-01\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Paris%28CDG%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=CDG&ContSysId=76&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Paris%2C+FR+-+Charles+De+Gaulle+%28Roissy%29+Airport+%28CDG%29&departure_date=01%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+FR+-+Charles+De+Gaulle+%28Roissy%29+Airport+%28CDG%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"bmatai12@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8604444404\",\"FirstName\":\"NIkhil\",\"LastName\":\"Verma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1994-02-13\",\"Address\":\"LIG 95\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-25 14:14:50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"N123456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2029-12-31\",\"passporIssue\":\"2020-01-01\",\"CustomerSysId\":\"36\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"386\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"36\",\"CustomerMemSysId\":[\"36\"],\"flight_booking_id\":[\"13\"]},\"_sessiondata\":null}','2020-11-25 14:15:21'),(12,'16-9841183479_0DELCCUI5548CCUBOMI5672_18735196888621032','{\"BookingData\":[{\"bookingId\":\"TJS106900039004\",\"FlightNumber\":\"I5-548\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"16-9841183479_0DELCCUI5548CCUBOMI5672_18735196888621032\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"21:50\",\"TravelDate\":\"2020-12-21T05:25\",\"LocalFromTime\":\"2020-12-21 05:25\",\"FromUTCTime\":\"2020-12-21T05:25\",\"LocalToTime\":\"2020-12-21 21:50\",\"ToUTCTime\":\"2020-12-21T21:50\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":650,\"LAYOVERDuration\":\"10h 50m\",\"FlyingMinutes\":985,\"DepartureDateTxt\":\"Mon, 21 Dec\",\"ArrivalDateTxt\":\"Mon, 21 Dec\",\"FlightDuration\":\"16h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":12794.099999999999,\"PublishedFareTxt\":\"12,794\",\"ApiResultIndex\":\"16-9841183479_0DELCCUI5548CCUBOMI5672_18735196888621032\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9678,\"Tax\":3116.1000000000004,\"YQTax\":0,\"OtherCharges\":1065,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":498,\"CarrierMiscFee\":0,\"MUFee\":1500,\"intPublishedFare\":12794.099999999999,\"PublishedFare\":13148.099999999999,\"OfferedFare\":13148.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"16-9841183479_0DELCCUI5548CCUBOMI5672_18735196888621032\",\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2077.4,\"BaseFareCal\":6452,\"BaseFare\":6452,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":332,\"MFT\":5.4,\"OT\":710,\"MU\":1000,\"YR\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1038.7,\"BaseFareCal\":3226,\"BaseFare\":3226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":355,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2020-12-21T07:50\",\"SegFlightNumber\":\"I5-548\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-21T05:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":650,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"10h 50m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-21T21:50\",\"SegFlightNumber\":\"I5-672\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2020-12-21T18:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"18:40\",\"strArrivalDtTime\":\"21:50\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PBAA\",\"Price\":0,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PBAB\",\"Price\":3780,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PBAC\",\"Price\":7580,\"Weight\":\"25KG\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PBAD\",\"Price\":11580,\"Weight\":\"30KG\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PBAF\",\"Price\":19000,\"Weight\":\"40KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"LZCM\",\"Price\":0,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KPCM\",\"Price\":0,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KFCM\",\"Price\":0,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KACM\",\"Price\":0,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"JMCM\",\"Price\":0,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"JDCM\",\"Price\":0,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"JCAI\",\"Price\":0,\"Description\":\"Juice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"HVCM\",\"Price\":0,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"GACM\",\"Price\":0,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"APCM\",\"Price\":0,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"MMAI\",\"Price\":149,\"Description\":\"Fruit Salad + Ice Cream\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"Chicken Junglee Sandwich in Masala Bread\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"LZCB\",\"Price\":350,\"Description\":\"Chicken Laziz with Trikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KPCB\",\"Price\":350,\"Description\":\"Rajwadi Khichdi With Kadhi Pakodi (V)\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KFCB\",\"Price\":350,\"Description\":\"Cheddar Cheese Omellete with Beetroot Cutlet\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"KACB\",\"Price\":350,\"Description\":\"Chef Kirti\'s Mastercurry with Raw Mango and Coconut Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"JDCB\",\"Price\":350,\"Description\":\"Jeera Aloo Kulcha with Chole Paneer & Vegetable Croquette\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"HVCB\",\"Price\":350,\"Description\":\"Hyderabadi Vegetable Biryani with Dal Makhani\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"GACB\",\"Price\":350,\"Description\":\"Grilled Basa Fish with Sauteed Vegetables\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"APCB\",\"Price\":350,\"Description\":\"Ajwaini Lachcha Paratha with Palak Paneer & Mirch Bajji\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"21\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"21\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-21\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=21%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1996-10-07\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-25 17:09:37\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"5\",\"Contacts\":\"9634022688\",\"FirstName\":\"surbhi\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1997-02-06\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-25 17:09:37\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"9634022688\",\"FirstName\":\"kanishka\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"2014-10-12\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"266\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-11-25 17:09:37\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":0,\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"387\",\"388\",\"389\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"32\",0],\"flight_booking_id\":[\"14\"]},\"_sessiondata\":null}','2020-11-25 17:12:07'),(13,'4-0891465211_0DELBOMSG8153_19253234228061970','{\"BookingData\":[{\"bookingId\":\"TJS103300039898\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0891465211_0DELBOMSG8153_19253234228061970\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2021-01-07T06:20\",\"LocalFromTime\":\"2021-01-07 06:20\",\"FromUTCTime\":\"2021-01-07T06:20\",\"LocalToTime\":\"2021-01-07 08:35\",\"ToUTCTime\":\"2021-01-07T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 07 Jan\",\"ArrivalDateTxt\":\"Thu, 07 Jan\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4472.7,\"PublishedFareTxt\":\"4,473\",\"ApiResultIndex\":\"4-0891465211_0DELBOMSG8153_19253234228061970\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1088.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":4472.7,\"PublishedFare\":4590.7,\"OfferedFare\":4590.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0891465211_0DELBOMSG8153_19253234228061970\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1088.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":395,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-07T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-07T06:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"15 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"713\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"07\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-07\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=07%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9818999760\",\"FirstName\":\"sfsaf\",\"LastName\":\"safsfadf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"1939-01-18\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-01 17:01:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"390\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"15\"]},\"_sessiondata\":null}','2020-12-01 17:01:27'),(14,'4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667','{\"BookingData\":[{\"bookingId\":\"TJS100200040262\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-12-16T20:45\",\"LocalFromTime\":\"2020-12-16 20:45\",\"FromUTCTime\":\"2020-12-16T20:45\",\"LocalToTime\":\"2020-12-17 07:05\",\"ToUTCTime\":\"2020-12-17T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Wed, 16 Dec\",\"ArrivalDateTxt\":\"Thu, 17 Dec\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5063.7,\"PublishedFareTxt\":\"5,064\",\"ApiResultIndex\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1679.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":5063.7,\"PublishedFare\":5181.7,\"OfferedFare\":5181.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1679.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"254\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-12-16T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-16T20:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"501\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-17T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-12-17T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NVML\",\"Price\":282,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"VCC2\",\"Price\":308,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NCC6\",\"Price\":308,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NCC5\",\"Price\":308,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NCC4\",\"Price\":308,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NCC2\",\"Price\":308,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"NCC1\",\"Price\":308,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"JNML\",\"Price\":359,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"GFVG\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"GFNV\",\"Price\":359,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"GFCM\",\"Price\":359,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"FPML\",\"Price\":359,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"DNVL\",\"Price\":359,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"DBML\",\"Price\":359,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"254\",\"Code\":\"CHML\",\"Price\":359,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"strTraceId\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100200040262\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"strTraceId\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-12-16T20:45\",\"LocalFromTime\":\"2020-12-16 20:45\",\"FromUTCTime\":\"2020-12-16T20:45\",\"LocalToTime\":\"2020-12-17 07:05\",\"ToUTCTime\":\"2020-12-17T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Wed, 16 Dec\",\"ArrivalDateTxt\":\"Thu, 17 Dec\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5063.7,\"ApiResultIndex\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1679.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":5063.7,\"PublishedFare\":5181.7,\"OfferedFare\":5181.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1679.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"254\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-12-16T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-16T20:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"501\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-17T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-12-17T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-3005661065_4DELHYDSG472HYDBOMSG704_19424512313383667\",\"localFromDateTime\":\"2020-12-16 20:45\",\"localToDateTime\":\"2020-12-17 07:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"16\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-16\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=16%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8585960381\",\"FirstName\":\"asdfasdf\",\"LastName\":\"asdfasfsa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":\"2002-11-17\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-03 16:35:38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"192561\",\"TPSysId\":\"192562\",\"VersionId\":[],\"CustomerSysId\":\"92363\",\"TrxId\":\"4785\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"396\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"30\"],\"flight_booking_id\":[\"21\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-03 16:41:14'),(15,'4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969','{\"BookingData\":[{\"bookingId\":\"TJS107000040445\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-12-04T20:45\",\"LocalFromTime\":\"2020-12-04 20:45\",\"FromUTCTime\":\"2020-12-04T20:45\",\"LocalToTime\":\"2020-12-05 07:05\",\"ToUTCTime\":\"2020-12-05T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Fri, 04 Dec\",\"ArrivalDateTxt\":\"Sat, 05 Dec\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5063.7,\"PublishedFareTxt\":\"5,064\",\"ApiResultIndex\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1679.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":5063.7,\"PublishedFare\":5181.7,\"OfferedFare\":5181.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1679.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"430\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-12-04T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-04T20:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"945\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-05T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-12-05T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF1\",\"Price\":103,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF2\",\"Price\":205,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF3\",\"Price\":308,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"strTraceId\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107000040445\",\"FlightNumber\":\"SG-472\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"strTraceId\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"20:45\",\"ArrivalTime\":\"07:05\",\"TravelDate\":\"2020-12-04T20:45\",\"LocalFromTime\":\"2020-12-04 20:45\",\"FromUTCTime\":\"2020-12-04T20:45\",\"LocalToTime\":\"2020-12-05 07:05\",\"ToUTCTime\":\"2020-12-05T07:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":620,\"DepartureDateTxt\":\"Fri, 04 Dec\",\"ArrivalDateTxt\":\"Sat, 05 Dec\",\"FlightDuration\":\"10h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5063.7,\"ApiResultIndex\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":1679.7,\"YQTax\":0,\"OtherCharges\":986,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":5063.7,\"PublishedFare\":5181.7,\"OfferedFare\":5181.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1679.7,\"BaseFareCal\":3384,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":986,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"430\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2020-12-04T22:55\",\"SegFlightNumber\":\"SG-472\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-04T20:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":405,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:45\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"945\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-05T07:05\",\"SegFlightNumber\":\"SG-704\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2020-12-05T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7110433852_2DELHYDSG472HYDBOMSG704_19516090991474969\",\"localFromDateTime\":\"2020-12-04 20:45\",\"localToDateTime\":\"2020-12-05 07:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Mumbai(BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"04\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"18676\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"04\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-04\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Mumbai%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=04%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-04 18:02:15'),(16,'5-9760556502_0DELLKO6E906_19526808079786708','{\"BookingData\":[{\"bookingId\":\"TJS106100040500\",\"FlightNumber\":\"6E-906\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2020-12-19T08:40\",\"LocalFromTime\":\"2020-12-19 08:40\",\"FromUTCTime\":\"2020-12-19T08:40\",\"LocalToTime\":\"2020-12-19 09:50\",\"ToUTCTime\":\"2020-12-19T09:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Sat, 19 Dec\",\"ArrivalDateTxt\":\"Sat, 19 Dec\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2993.7,\"PublishedFareTxt\":\"2,994\",\"ApiResultIndex\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1991,\"Tax\":1002.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":2993.7,\"PublishedFare\":3111.7,\"OfferedFare\":3111.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"newFare\":0,\"oldFare\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1002.7,\"BaseFareCal\":1991,\"BaseFare\":1991,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":105,\"MFT\":2.7,\"OT\":380,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}]},\"Segments\":[{\"segmentid\":\"214\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2020-12-19T09:50\",\"SegFlightNumber\":\"6E-906\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-19T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"214\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"214\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"214\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"214\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"214\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"strTraceId\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106100040500\",\"FlightNumber\":\"6E-906\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"strTraceId\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2020-12-19T08:40\",\"LocalFromTime\":\"2020-12-19 08:40\",\"FromUTCTime\":\"2020-12-19T08:40\",\"LocalToTime\":\"2020-12-19 09:50\",\"ToUTCTime\":\"2020-12-19T09:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Sat, 19 Dec\",\"ArrivalDateTxt\":\"Sat, 19 Dec\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2993.7,\"ApiResultIndex\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1991,\"Tax\":1002.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":105,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":2993.7,\"PublishedFare\":3111.7,\"OfferedFare\":3111.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1002.7,\"BaseFareCal\":1991,\"BaseFare\":1991,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":105,\"MFT\":2.7,\"OT\":380,\"MU\":500,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"214\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2020-12-19T09:50\",\"SegFlightNumber\":\"6E-906\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-19T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/rastafari.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9760556502_0DELLKO6E906_19526808079786708\",\"localFromDateTime\":\"2020-12-19 08:40\",\"localToDateTime\":\"2020-12-19 09:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi(DEL)\",\"mytrip_city_to\":\"Lucknow(LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Lucknow, IN - Amausi Airport (LKO)\",\"departure_date\":\"19\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Amausi Airport (LKO)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"DEL\",\"to\":\"LKO\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Lucknow, IN - Amausi Airport (LKO)\",\"sourceCityId\":\"7701\",\"destinationCityId\":\"16028\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi%28DEL%29&mytrip_city_to=Lucknow%28LKO%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Lucknow%2C+IN+-+Amausi+Airport+%28LKO%29&departure_date=19%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Amausi+Airport+%28LKO%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"matailata@gmail.com\",\"CustomerSysId\":\"92470\",\"AgencySysId\":\"5155\",\"FirstName\":\"Lata\",\"LastName\":\"Matai\",\"Password_cu\":\"4ea4ec2536a80ad62e61d43ec4548196\",\"ContactNo1\":\"8687110948\"}}','2020-12-04 21:02:55'),(17,'5-8065604430_21DELBOM6E6957_21242816116039689','{\"BookingData\":[{\"bookingId\":\"TJS107900045078\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2020-12-30T19:20\",\"LocalFromTime\":\"2020-12-30 19:20\",\"FromUTCTime\":\"2020-12-30T19:20\",\"LocalToTime\":\"2020-12-30 21:35\",\"ToUTCTime\":\"2020-12-30T21:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 30 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":112,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,780\",\"ApiResultIndex\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3121,\"Tax\":658.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":161,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"OfferedFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":658.700000000000045474735088646411895751953125,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"BaseFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":161,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3779.6999999999998181010596454143524169921875,\"CostToCustomer\":3779.6999999999998181010596454143524169921875,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3694.9499999999998181010596454143524169921875,\"intOfferedFare\":3679.6999999999998181010596454143524169921875,\"intPublishFare\":3779.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"038\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-30T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":112,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107900045078\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"strTraceId\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2020-12-30T19:20\",\"LocalFromTime\":\"2020-12-30 19:20\",\"FromUTCTime\":\"2020-12-30T19:20\",\"LocalToTime\":\"2020-12-30 21:35\",\"ToUTCTime\":\"2020-12-30T21:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 30 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":112,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3121,\"Tax\":658.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":161,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"OfferedFare\":3679.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":658.700000000000045474735088646411895751953125,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"BaseFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":161,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"038\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-30T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":112,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8065604430_21DELBOM6E6957_21242816116039689\",\"localFromDateTime\":\"2020-12-30 19:20\",\"localToDateTime\":\"2020-12-30 21:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"30\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-30\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=30%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sdfgsdg\",\"LastName\":\"dfgsdfgsdfg\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-24 18:00:16\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"45\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16348\",\"TPSysId\":\"16349\",\"VersionId\":[\"9681\"],\"CustomerSysId\":\"169\",\"TrxId\":\"5014\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"45\":{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"397\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"45\",\"CustomerMemSysId\":[\"45\"],\"flight_booking_id\":[\"180\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-24 18:01:19'),(18,'4-6794572335_2DELBOMSG8723_21244120280973084','{\"BookingData\":[{\"bookingId\":\"TJS101400045084\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"10:50\",\"TravelDate\":\"2020-12-30T08:30\",\"LocalFromTime\":\"2020-12-30 08:30\",\"FromUTCTime\":\"2020-12-30T08:30\",\"LocalToTime\":\"2020-12-30 10:50\",\"ToUTCTime\":\"2020-12-30T10:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 30 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"BaseFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4071.6999999999998181010596454143524169921875,\"CostToCustomer\":4071.6999999999998181010596454143524169921875,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3986.9499999999998181010596454143524169921875,\"intOfferedFare\":3971.6999999999998181010596454143524169921875,\"intPublishFare\":4071.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T10:50\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-30T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400045084\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"strTraceId\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"10:50\",\"TravelDate\":\"2020-12-30T08:30\",\"LocalFromTime\":\"2020-12-30 08:30\",\"FromUTCTime\":\"2020-12-30T08:30\",\"LocalToTime\":\"2020-12-30 10:50\",\"ToUTCTime\":\"2020-12-30T10:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 30 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"BaseFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T10:50\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-30T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6794572335_2DELBOMSG8723_21244120280973084\",\"localFromDateTime\":\"2020-12-30 08:30\",\"localToDateTime\":\"2020-12-30 10:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"30\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-30\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=30%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"fdasdfasdf\",\"LastName\":\"sdfasfasfd\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-24 18:02:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"46\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16350\",\"TPSysId\":\"16351\",\"VersionId\":[],\"CustomerSysId\":\"169\",\"TrxId\":\"5015\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"46\":{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VGSW\",\"Price\":\"229\",\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"}},\"SelectedBaggSessionNew\":{\"46\":{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"BOF1\",\"Price\":\"105\",\"Weight\":\"Bag Out First with 1 Bag\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"398\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"46\",\"CustomerMemSysId\":[\"46\"],\"flight_booking_id\":[\"181\"]},\"selectedSeatSession\":{\"334\":{\"46\":{\"seatNo\":\"2A\",\"seatPosition\":{\"row\":2,\"column\":1},\"isBooked\":false,\"isLegroom\":true,\"code\":\"2A\",\"amount\":300}}},\"_sessiondata\":null}','2020-12-24 18:04:53'),(19,'5-2247588738_0DELBOM6E148_21246864535338926','{\"BookingData\":[{\"bookingId\":\"TJS106700045097\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-12T05:05\",\"LocalFromTime\":\"2021-01-12 05:05\",\"FromUTCTime\":\"2021-01-12T05:05\",\"LocalToTime\":\"2021-01-12 07:10\",\"ToUTCTime\":\"2021-01-12T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 12 Jan\",\"ArrivalDateTxt\":\"Tue, 12 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":106,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3434.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,435\",\"ApiResultIndex\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2792,\"Tax\":642.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":145,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3434.6999999999998181010596454143524169921875,\"PublishedFare\":3434.6999999999998181010596454143524169921875,\"OfferedFare\":3334.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":642.700000000000045474735088646411895751953125,\"BaseFareCal\":3349.9499999999998181010596454143524169921875,\"BaseFare\":3334.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":145,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3434.6999999999998181010596454143524169921875,\"CostToCustomer\":3434.6999999999998181010596454143524169921875,\"BaseFareCal\":3349.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3349.9499999999998181010596454143524169921875,\"intOfferedFare\":3334.6999999999998181010596454143524169921875,\"intPublishFare\":3434.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"613\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-12T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-12T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":106,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"613\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"613\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"613\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"613\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"613\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106700045097\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"strTraceId\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-12T05:05\",\"LocalFromTime\":\"2021-01-12 05:05\",\"FromUTCTime\":\"2021-01-12T05:05\",\"LocalToTime\":\"2021-01-12 07:10\",\"ToUTCTime\":\"2021-01-12T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 12 Jan\",\"ArrivalDateTxt\":\"Tue, 12 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":106,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3434.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2792,\"Tax\":642.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":145,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3434.6999999999998181010596454143524169921875,\"PublishedFare\":3434.6999999999998181010596454143524169921875,\"OfferedFare\":3334.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":642.700000000000045474735088646411895751953125,\"BaseFareCal\":3349.9499999999998181010596454143524169921875,\"BaseFare\":3334.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":145,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"613\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-12T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-12T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":106,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2247588738_0DELBOM6E148_21246864535338926\",\"localFromDateTime\":\"2021-01-12 05:05\",\"localToDateTime\":\"2021-01-12 07:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"12\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-12\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=12%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"d7iiojra111@gmai.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"5253636363\",\"FirstName\":\"Vdd\",\"LastName\":\"Fcgh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-24 18:49:18\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"59\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16352\",\"TPSysId\":\"16353\",\"VersionId\":[\"9682\"],\"CustomerSysId\":\"276\",\"TrxId\":\"5016\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"399\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"59\",\"CustomerMemSysId\":[\"59\"],\"flight_booking_id\":[\"182\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-24 18:49:44'),(20,'5-7379138416_5DELBOM6E6957_21247721657896991','{\"BookingData\":[{\"bookingId\":\"TJS105200045117\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2020-12-29T19:20\",\"LocalFromTime\":\"2020-12-29 19:20\",\"FromUTCTime\":\"2020-12-29T19:20\",\"LocalToTime\":\"2020-12-29 21:35\",\"ToUTCTime\":\"2020-12-29T21:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":78,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,780\",\"ApiResultIndex\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3121,\"Tax\":658.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":161,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"OfferedFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":658.700000000000045474735088646411895751953125,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"BaseFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":161,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3779.6999999999998181010596454143524169921875,\"CostToCustomer\":3779.6999999999998181010596454143524169921875,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3694.9499999999998181010596454143524169921875,\"intOfferedFare\":3679.6999999999998181010596454143524169921875,\"intPublishFare\":3779.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"109\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":78,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105200045117\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"strTraceId\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2020-12-29T19:20\",\"LocalFromTime\":\"2020-12-29 19:20\",\"FromUTCTime\":\"2020-12-29T19:20\",\"LocalToTime\":\"2020-12-29 21:35\",\"ToUTCTime\":\"2020-12-29T21:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":78,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3121,\"Tax\":658.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":161,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3779.6999999999998181010596454143524169921875,\"PublishedFare\":3779.6999999999998181010596454143524169921875,\"OfferedFare\":3679.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":658.700000000000045474735088646411895751953125,\"BaseFareCal\":3694.9499999999998181010596454143524169921875,\"BaseFare\":3679.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":161,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"109\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":78,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7379138416_5DELBOM6E6957_21247721657896991\",\"localFromDateTime\":\"2020-12-29 19:20\",\"localToDateTime\":\"2020-12-29 21:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-24 19:41:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"47\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16354\",\"TPSysId\":\"16355\",\"VersionId\":[\"9683\"],\"CustomerSysId\":\"169\",\"TrxId\":\"5017\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"47\":{\"Currency\":\"INR\",\"key\":\"109\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"400\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"47\",\"CustomerMemSysId\":[\"47\"],\"flight_booking_id\":[\"183\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-24 19:41:26'),(21,'4-2300197491_0DELBOMSG8153_21302234748373014','{\"BookingData\":[{\"bookingId\":\"TJS102400045157\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-29T06:20\",\"LocalFromTime\":\"2020-12-29 06:20\",\"FromUTCTime\":\"2020-12-29T06:20\",\"LocalToTime\":\"2020-12-29 08:35\",\"ToUTCTime\":\"2020-12-29T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"BaseFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4071.6999999999998181010596454143524169921875,\"CostToCustomer\":4071.6999999999998181010596454143524169921875,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3986.9499999999998181010596454143524169921875,\"intOfferedFare\":3971.6999999999998181010596454143524169921875,\"intPublishFare\":4071.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"633\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"633\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102400045157\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"strTraceId\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-29T06:20\",\"LocalFromTime\":\"2020-12-29 06:20\",\"FromUTCTime\":\"2020-12-29T06:20\",\"LocalToTime\":\"2020-12-29 08:35\",\"ToUTCTime\":\"2020-12-29T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":3986.9499999999998181010596454143524169921875,\"BaseFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"633\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2300197491_0DELBOMSG8153_21302234748373014\",\"localFromDateTime\":\"2020-12-29 06:20\",\"localToDateTime\":\"2020-12-29 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:11:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"48\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"401\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"48\",\"CustomerMemSysId\":[\"48\"],\"flight_booking_id\":[\"184\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:11:16'),(22,'5-8641166595_20DELBOM6E5339_21302324940506992','{\"BookingData\":[{\"bookingId\":\"TJS105200045158\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:35\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2020-12-29T10:35\",\"LocalFromTime\":\"2020-12-29 10:35\",\"FromUTCTime\":\"2020-12-29T10:35\",\"LocalToTime\":\"2020-12-29 13:00\",\"ToUTCTime\":\"2020-12-29T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":143,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,496\",\"ApiResultIndex\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3495.6999999999998181010596454143524169921875,\"CostToCustomer\":3495.6999999999998181010596454143524169921875,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3410.9499999999998181010596454143524169921875,\"intOfferedFare\":3395.6999999999998181010596454143524169921875,\"intPublishFare\":3495.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"186\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T13:00\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T10:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":143,\"strDepartureDtTime\":\"10:35\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"186\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"186\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"186\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"186\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"186\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105200045158\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"strTraceId\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:35\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2020-12-29T10:35\",\"LocalFromTime\":\"2020-12-29 10:35\",\"FromUTCTime\":\"2020-12-29T10:35\",\"LocalToTime\":\"2020-12-29 13:00\",\"ToUTCTime\":\"2020-12-29T13:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":143,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"186\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T13:00\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T10:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":143,\"strDepartureDtTime\":\"10:35\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8641166595_20DELBOM6E5339_21302324940506992\",\"localFromDateTime\":\"2020-12-29 10:35\",\"localToDateTime\":\"2020-12-29 13:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asda\",\"LastName\":\"asdad\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:12:36\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"402\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_id\":[\"185\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:12:42'),(23,'5-1184366306_19DELBOM6E408_21302883135533382','{\"BookingData\":[{\"bookingId\":\"TJS108100045161\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,496\",\"ApiResultIndex\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3495.6999999999998181010596454143524169921875,\"CostToCustomer\":3495.6999999999998181010596454143524169921875,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3410.9499999999998181010596454143524169921875,\"intOfferedFare\":3395.6999999999998181010596454143524169921875,\"intPublishFare\":3495.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"529\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"529\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108100045161\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"strTraceId\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"529\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1184366306_19DELBOM6E408_21302883135533382\",\"localFromDateTime\":\"2020-12-29 06:25\",\"localToDateTime\":\"2020-12-29 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asdfsad\",\"LastName\":\"sdfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:21:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"50\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"403\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"50\",\"CustomerMemSysId\":[\"50\"],\"flight_booking_id\":[\"186\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:21:56'),(24,'5-7447024613_19DELBOM6E408_21303410210794493','{\"BookingData\":[{\"bookingId\":\"TJS102300045162\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,496\",\"ApiResultIndex\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3495.6999999999998181010596454143524169921875,\"CostToCustomer\":3495.6999999999998181010596454143524169921875,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3410.9499999999998181010596454143524169921875,\"intOfferedFare\":3395.6999999999998181010596454143524169921875,\"intPublishFare\":3495.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"413\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102300045162\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"strTraceId\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"413\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7447024613_19DELBOM6E408_21303410210794493\",\"localFromDateTime\":\"2020-12-29 06:25\",\"localToDateTime\":\"2020-12-29 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"aSD\",\"LastName\":\"AdsA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:31:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"51\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"404\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_id\":[\"187\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:32:04'),(25,'5-2457070061_19DELBOM6E408_21304635960931617','{\"BookingData\":[{\"bookingId\":\"TJS103600045164\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,496\",\"ApiResultIndex\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3495.6999999999998181010596454143524169921875,\"CostToCustomer\":3495.6999999999998181010596454143524169921875,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3410.9499999999998181010596454143524169921875,\"intOfferedFare\":3395.6999999999998181010596454143524169921875,\"intPublishFare\":3495.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"073\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"073\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103600045164\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"strTraceId\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"073\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2457070061_19DELBOM6E408_21304635960931617\",\"localFromDateTime\":\"2020-12-29 06:25\",\"localToDateTime\":\"2020-12-29 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sdfsad\",\"LastName\":\"sadfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:54:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"52\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"405\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_id\":[\"188\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:54:55'),(26,'5-6746925510_19DELBOM6E408_21305025125750224','{\"BookingData\":[{\"bookingId\":\"TJS107000045169\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,496\",\"ApiResultIndex\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3495.6999999999998181010596454143524169921875,\"CostToCustomer\":3495.6999999999998181010596454143524169921875,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3410.9499999999998181010596454143524169921875,\"intOfferedFare\":3395.6999999999998181010596454143524169921875,\"intPublishFare\":3495.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"788\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"788\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"788\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"788\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"788\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"788\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107000045169\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"strTraceId\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":121,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2850,\"Tax\":645.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3495.6999999999998181010596454143524169921875,\"PublishedFare\":3495.6999999999998181010596454143524169921875,\"OfferedFare\":3395.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":645.700000000000045474735088646411895751953125,\"BaseFareCal\":3410.9499999999998181010596454143524169921875,\"BaseFare\":3395.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"788\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":121,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6746925510_19DELBOM6E408_21305025125750224\",\"localFromDateTime\":\"2020-12-29 06:25\",\"localToDateTime\":\"2020-12-29 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sdfsaf\",\"LastName\":\"sdfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 10:57:34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"53\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":false,\"arrIds\":[],\"redirect\":true,\"message\":\"This booking is not processed. Please contact to administrator.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"406\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"53\",\"CustomerMemSysId\":[\"53\"],\"flight_booking_id\":[\"189\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 10:57:43'),(27,'5-6027802179_2DELBOM6E408_21306921034559300','{\"BookingData\":[{\"bookingId\":\"TJS106900045175\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":114,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,491\",\"ApiResultIndex\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2846,\"Tax\":644.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":147,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"OfferedFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":644.700000000000045474735088646411895751953125,\"BaseFareCal\":3405.9499999999998181010596454143524169921875,\"BaseFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":147,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3490.6999999999998181010596454143524169921875,\"CostToCustomer\":3490.6999999999998181010596454143524169921875,\"BaseFareCal\":3405.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3405.9499999999998181010596454143524169921875,\"intOfferedFare\":3390.6999999999998181010596454143524169921875,\"intPublishFare\":3490.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":114,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"141\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106900045175\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"strTraceId\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-29T06:25\",\"LocalFromTime\":\"2020-12-29 06:25\",\"FromUTCTime\":\"2020-12-29T06:25\",\"LocalToTime\":\"2020-12-29 08:45\",\"ToUTCTime\":\"2020-12-29T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":114,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2846,\"Tax\":644.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":147,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"OfferedFare\":3390.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":644.700000000000045474735088646411895751953125,\"BaseFareCal\":3405.9499999999998181010596454143524169921875,\"BaseFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":147,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"141\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":114,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6027802179_2DELBOM6E408_21306921034559300\",\"localFromDateTime\":\"2020-12-29 06:25\",\"localToDateTime\":\"2020-12-29 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Indira Gandhi Intl Airport (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Indira+Gandhi+Intl+Airport+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"zxczC\",\"LastName\":\"zxczc\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 11:50:14\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"60\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197421\",\"TPSysId\":\"197422\",\"VersionId\":[\"19021\"],\"CustomerSysId\":\"92363\",\"TrxId\":\"5453\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"412\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"60\",\"CustomerMemSysId\":[\"60\"],\"flight_booking_id\":[\"196\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-25 11:53:03'),(28,'5-2628232187_0DELBOM6E408_21326622120989484','{\"BookingData\":[{\"bookingId\":\"TJS102500045199\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-27T06:25\",\"LocalFromTime\":\"2020-12-27 06:25\",\"FromUTCTime\":\"2020-12-27T06:25\",\"LocalToTime\":\"2020-12-27 08:45\",\"ToUTCTime\":\"2020-12-27T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 27 Dec\",\"ArrivalDateTxt\":\"Sun, 27 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":108,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,491\",\"ApiResultIndex\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2846,\"Tax\":644.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":147,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFare\":3608.6999999999998181010596454143524169921875,\"OfferedFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":644.700000000000045474735088646411895751953125,\"BaseFareCal\":3423.9499999999998181010596454143524169921875,\"BaseFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":147,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3608.6999999999998181010596454143524169921875,\"CostToCustomer\":3608.6999999999998181010596454143524169921875,\"BaseFareCal\":3423.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3423.9499999999998181010596454143524169921875,\"intOfferedFare\":3390.6999999999998181010596454143524169921875,\"intPublishFare\":3490.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"373\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-27T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-27T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":108,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"373\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"373\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"373\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"373\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"373\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102500045199\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"strTraceId\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2020-12-27T06:25\",\"LocalFromTime\":\"2020-12-27 06:25\",\"FromUTCTime\":\"2020-12-27T06:25\",\"LocalToTime\":\"2020-12-27 08:45\",\"ToUTCTime\":\"2020-12-27T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 27 Dec\",\"ArrivalDateTxt\":\"Sun, 27 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":108,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3490.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2846,\"Tax\":644.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":147,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3490.6999999999998181010596454143524169921875,\"PublishedFare\":3608.6999999999998181010596454143524169921875,\"OfferedFare\":3390.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":644.700000000000045474735088646411895751953125,\"BaseFareCal\":3423.9499999999998181010596454143524169921875,\"BaseFare\":3390.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":147,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"373\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-27T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-27T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":108,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2628232187_0DELBOM6E408_21326622120989484\",\"localFromDateTime\":\"2020-12-27 06:25\",\"localToDateTime\":\"2020-12-27 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"27\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-27\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=27%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"bmatai12@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8604444404\",\"FirstName\":\"Bhupesh\",\"LastName\":\"Matai\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"LIG 95\",\"CityTitle\":\"Kanpur\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-25 16:57:50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197571\",\"TPSysId\":\"197572\",\"VersionId\":[\"19048\"],\"CustomerSysId\":\"90098\",\"TrxId\":\"5462\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"413\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"197\"]},\"selectedSeatSession\":{\"373\":{\"62\":{\"seatNo\":\"25E\",\"seatPosition\":{\"row\":25,\"column\":6},\"isBooked\":false,\"code\":\"25E\",\"amount\":0}}},\"_sessiondata\":null}','2020-12-25 16:58:58'),(29,'5-6049097586_21DELBOM6E6957_21398040630835488','{\"BookingData\":[{\"bookingId\":\"TJS101400045268\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2021-02-01T19:20\",\"LocalFromTime\":\"2021-02-01 19:20\",\"FromUTCTime\":\"2021-02-01T19:20\",\"LocalToTime\":\"2021-02-01 21:35\",\"ToUTCTime\":\"2021-02-01T21:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 01 Feb\",\"ArrivalDateTxt\":\"Mon, 01 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":62,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4466.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"4,467\",\"ApiResultIndex\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3775,\"Tax\":691.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4466.6999999999998181010596454143524169921875,\"PublishedFare\":4584.6999999999998181010596454143524169921875,\"OfferedFare\":4366.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FLEXI PLUS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":691.700000000000045474735088646411895751953125,\"BaseFareCal\":4399.9499999999998181010596454143524169921875,\"BaseFare\":4366.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":4584.6999999999998181010596454143524169921875,\"CostToCustomer\":4584.6999999999998181010596454143524169921875,\"BaseFareCal\":4399.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":4399.9499999999998181010596454143524169921875,\"intOfferedFare\":4366.6999999999998181010596454143524169921875,\"intPublishFare\":4466.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"273\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-01T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-01T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-01 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400045268\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"strTraceId\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2021-02-01T19:20\",\"LocalFromTime\":\"2021-02-01 19:20\",\"FromUTCTime\":\"2021-02-01T19:20\",\"LocalToTime\":\"2021-02-01 21:35\",\"ToUTCTime\":\"2021-02-01T21:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 01 Feb\",\"ArrivalDateTxt\":\"Mon, 01 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":62,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4466.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3775,\"Tax\":691.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4466.6999999999998181010596454143524169921875,\"PublishedFare\":4584.6999999999998181010596454143524169921875,\"OfferedFare\":4366.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":691.700000000000045474735088646411895751953125,\"BaseFareCal\":4399.9499999999998181010596454143524169921875,\"BaseFare\":4366.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"273\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-01T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-01T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6049097586_21DELBOM6E6957_21398040630835488\",\"localFromDateTime\":\"2021-02-01 19:20\",\"localToDateTime\":\"2021-02-01 21:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"01\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"01\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-01\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=01%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-26 12:49:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197675\",\"TPSysId\":\"197676\",\"VersionId\":[\"19085\"],\"CustomerSysId\":\"91499\",\"TrxId\":\"5481\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"273\",\"Code\":\"XBPB\",\"Price\":\"4000\",\"Weight\":\"10 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"415\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_id\":[\"199\"]},\"selectedSeatSession\":{\"273\":{\"49\":{\"seatNo\":\"5C\",\"seatPosition\":{\"row\":5,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"5C\",\"amount\":0}}},\"_sessiondata\":null}','2020-12-26 12:50:23'),(30,'5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964','{\"BookingData\":[{\"bookingId\":\"TJS101000045303\",\"FlightNumber\":\"6E-2143\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2020-12-29T05:45\",\"LocalFromTime\":\"2020-12-29 05:45\",\"FromUTCTime\":\"2020-12-29T05:45\",\"LocalToTime\":\"2020-12-29 10:40\",\"ToUTCTime\":\"2020-12-29T10:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3862.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,863\",\"ApiResultIndex\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3150,\"Tax\":712.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":430,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3862.6999999999998181010596454143524169921875,\"PublishedFare\":3980.6999999999998181010596454143524169921875,\"OfferedFare\":3762.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":712.700000000000045474735088646411895751953125,\"BaseFareCal\":3795.9499999999998181010596454143524169921875,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":430,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3980.6999999999998181010596454143524169921875,\"CostToCustomer\":3980.6999999999998181010596454143524169921875,\"BaseFareCal\":3795.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3795.9499999999998181010596454143524169921875,\"intOfferedFare\":3762.6999999999998181010596454143524169921875,\"intPublishFare\":3862.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"296\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2020-12-29T06:45\",\"SegFlightNumber\":\"6E-2143\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":105,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"679\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T10:40\",\"SegFlightNumber\":\"6E-5343\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2020-12-29T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101000045303\",\"FlightNumber\":\"6E-2143\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"strTraceId\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:45\",\"ArrivalTime\":\"10:40\",\"TravelDate\":\"2020-12-29T05:45\",\"LocalFromTime\":\"2020-12-29 05:45\",\"FromUTCTime\":\"2020-12-29T05:45\",\"LocalToTime\":\"2020-12-29 10:40\",\"ToUTCTime\":\"2020-12-29T10:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3862.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3150,\"Tax\":712.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":430,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3862.6999999999998181010596454143524169921875,\"PublishedFare\":3980.6999999999998181010596454143524169921875,\"OfferedFare\":3762.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":712.700000000000045474735088646411895751953125,\"BaseFareCal\":3795.9499999999998181010596454143524169921875,\"BaseFare\":3150,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":430,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"296\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2020-12-29T06:45\",\"SegFlightNumber\":\"6E-2143\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T05:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":105,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"05:45\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"679\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T10:40\",\"SegFlightNumber\":\"6E-5343\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2020-12-29T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8315880151_18DELJAI6E2143JAIBOM6E5343_21415427322979964\",\"localFromDateTime\":\"2020-12-29 05:45\",\"localToDateTime\":\"2020-12-29 10:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sadfdsaf\",\"LastName\":\"sdfsadf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-26 17:57:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"78\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197750\",\"TPSysId\":\"197751\",\"VersionId\":[\"19101\"],\"CustomerSysId\":\"92363\",\"TrxId\":\"5492\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"78\":{\"Currency\":\"INR\",\"key\":\"296\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"416\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"78\",\"CustomerMemSysId\":[\"78\"],\"flight_booking_id\":[\"200\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-26 17:59:31'),(31,'4-9989590453_0DELBOMSG8153_21416897593369819','{\"BookingData\":[{\"bookingId\":\"TJS109800045313\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-29T06:20\",\"LocalFromTime\":\"2020-12-29 06:20\",\"FromUTCTime\":\"2020-12-29T06:20\",\"LocalToTime\":\"2020-12-29 08:35\",\"ToUTCTime\":\"2020-12-29T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4189.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":4189.6999999999998181010596454143524169921875,\"CostToCustomer\":4189.6999999999998181010596454143524169921875,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":4004.9499999999998181010596454143524169921875,\"intOfferedFare\":3971.6999999999998181010596454143524169921875,\"intPublishFare\":4071.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"077\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"EB05\",\"Price\":1948,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"EB15\",\"Price\":5843,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"EB20\",\"Price\":7790,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"EB30\",\"Price\":11685,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109800045313\",\"FlightNumber\":\"SG-8153\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"strTraceId\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2020-12-29T06:20\",\"LocalFromTime\":\"2020-12-29 06:20\",\"FromUTCTime\":\"2020-12-29T06:20\",\"LocalToTime\":\"2020-12-29 08:35\",\"ToUTCTime\":\"2020-12-29T08:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Tue, 29 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4189.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"077\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-29T08:35\",\"SegFlightNumber\":\"SG-8153\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9989590453_0DELBOMSG8153_21416897593369819\",\"localFromDateTime\":\"2020-12-29 06:20\",\"localToDateTime\":\"2020-12-29 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sadfdsa\",\"LastName\":\"sdafsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-26 18:02:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"79\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197752\",\"TPSysId\":\"197753\",\"VersionId\":[],\"CustomerSysId\":\"92363\",\"TrxId\":\"5493\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"79\":{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"VGSW\",\"Price\":\"229\",\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"}},\"SelectedBaggSessionNew\":{\"79\":{\"Currency\":\"INR\",\"key\":\"077\",\"Code\":\"BOF1\",\"Price\":\"105\",\"Weight\":\"Bag Out First with 1 Bag\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"417\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"79\",\"CustomerMemSysId\":[\"79\"],\"flight_booking_id\":[\"201\"]},\"selectedSeatSession\":{\"077\":{\"79\":{\"seatNo\":\"9A\",\"seatPosition\":{\"row\":9,\"column\":1},\"isBooked\":false,\"code\":\"9A\",\"amount\":300}}},\"_sessiondata\":null}','2020-12-26 18:02:44'),(32,'5-0616508502_23DELBOM6E148_21580627988820524','{\"BookingData\":[{\"bookingId\":\"TJS109600045459\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,168\",\"ApiResultIndex\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3285.6999999999998181010596454143524169921875,\"CostToCustomer\":3285.6999999999998181010596454143524169921875,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3100.9499999999998181010596454143524169921875,\"intOfferedFare\":3067.6999999999998181010596454143524169921875,\"intPublishFare\":3167.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109600045459\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"strTraceId\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0616508502_23DELBOM6E148_21580627988820524\",\"localFromDateTime\":\"2021-01-31 05:05\",\"localToDateTime\":\"2021-01-31 07:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"31\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-31\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=31%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Up\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-28 15:35:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"80\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197911\",\"TPSysId\":\"197912\",\"VersionId\":[\"19139\"],\"CustomerSysId\":\"93900\",\"TrxId\":\"5523\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"80\":{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"418\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"80\",\"CustomerMemSysId\":[\"80\"],\"flight_booking_id\":[\"202\"]},\"selectedSeatSession\":{\"279\":{\"80\":{\"seatNo\":\"7B\",\"seatPosition\":{\"row\":7,\"column\":2},\"isBooked\":false,\"code\":\"7B\",\"amount\":350}}},\"_sessiondata\":null}','2020-12-28 15:49:04'),(33,'5-9900569647_23DELBOM6E148_21581795872805675','{\"BookingData\":[{\"bookingId\":\"TJS102800045463\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,168\",\"ApiResultIndex\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3285.6999999999998181010596454143524169921875,\"CostToCustomer\":3285.6999999999998181010596454143524169921875,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3100.9499999999998181010596454143524169921875,\"intOfferedFare\":3067.6999999999998181010596454143524169921875,\"intPublishFare\":3167.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"111\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102800045463\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"strTraceId\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"111\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9900569647_23DELBOM6E148_21581795872805675\",\"localFromDateTime\":\"2021-01-31 05:05\",\"localToDateTime\":\"2021-01-31 07:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"31\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-31\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=31%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Up\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-28 15:51:13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"81\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197916\",\"TPSysId\":\"197917\",\"VersionId\":[\"19142\"],\"CustomerSysId\":\"93900\",\"TrxId\":\"5524\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"81\":{\"Currency\":\"INR\",\"key\":\"111\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"419\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"81\",\"CustomerMemSysId\":[\"81\"],\"flight_booking_id\":[\"203\"]},\"selectedSeatSession\":{\"111\":{\"81\":{\"seatNo\":\"7B\",\"seatPosition\":{\"row\":7,\"column\":2},\"isBooked\":false,\"code\":\"7B\",\"amount\":350}}},\"_sessiondata\":null}','2020-12-28 15:52:31'),(34,'5-7129879144_23DELBOM6E148_21582526568774873','{\"BookingData\":[{\"bookingId\":\"TJS109100045464\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,168\",\"ApiResultIndex\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3285.6999999999998181010596454143524169921875,\"CostToCustomer\":3285.6999999999998181010596454143524169921875,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3100.9499999999998181010596454143524169921875,\"intOfferedFare\":3067.6999999999998181010596454143524169921875,\"intPublishFare\":3167.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"609\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109100045464\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"strTraceId\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-31T05:05\",\"LocalFromTime\":\"2021-01-31 05:05\",\"FromUTCTime\":\"2021-01-31T05:05\",\"LocalToTime\":\"2021-01-31 07:10\",\"ToUTCTime\":\"2021-01-31T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sun, 31 Jan\",\"ArrivalDateTxt\":\"Sun, 31 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"609\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-31T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-31T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7129879144_23DELBOM6E148_21582526568774873\",\"localFromDateTime\":\"2021-01-31 05:05\",\"localToDateTime\":\"2021-01-31 07:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"31\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-31\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=31%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Up\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-28 16:05:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"82\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"197925\",\"TPSysId\":\"197926\",\"VersionId\":[\"19145\"],\"CustomerSysId\":\"93900\",\"TrxId\":\"5526\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"82\":{\"Currency\":\"INR\",\"key\":\"609\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"420\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"82\",\"CustomerMemSysId\":[\"82\"],\"flight_booking_id\":[\"204\"]},\"selectedSeatSession\":{\"609\":{\"82\":{\"seatNo\":\"6A\",\"seatPosition\":{\"row\":6,\"column\":1},\"isBooked\":false,\"code\":\"6A\",\"amount\":350}}},\"_sessiondata\":null}','2020-12-28 16:06:50'),(35,'5-9607042579_3DELBOM6E5339_21656179163521184','{\"BookingData\":[{\"bookingId\":\"TJS103300045643\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:35\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2021-01-18T10:35\",\"LocalFromTime\":\"2021-01-18 10:35\",\"FromUTCTime\":\"2021-01-18T10:35\",\"LocalToTime\":\"2021-01-18 13:00\",\"ToUTCTime\":\"2021-01-18T13:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":103,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13400.0999999999985448084771633148193359375,\"PublishedFareTxt\":\"13,400\",\"ApiResultIndex\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11325,\"Tax\":2075.100000000000363797880709171295166015625,\"YQTax\":0,\"OtherCharges\":1140,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.10000000000000142108547152020037174224853515625,\"AirlineGSTComponent\":582,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":13400.0999999999985448084771633148193359375,\"PublishedFare\":13754.100000000000363797880709171295166015625,\"OfferedFare\":13100.0999999999985448084771633148193359375,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FLEXI PLUS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":99.7600000000000051159076974727213382720947265625,\"apiMarkup\":254.240000000000009094947017729282379150390625,\"IntCommission\":0,\"apiTaxOnMarkup\":45.75999999999999801048033987171947956085205078125,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":554.240000000000009094947017729282379150390625,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1383.40000000000009094947017729282379150390625,\"BaseFareCal\":8799.90999999999985448084771633148193359375,\"BaseFare\":7550,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":388,\"MFT\":5.4000000000000003552713678800500929355621337890625,\"OT\":760,\"MU\":200,\"YR\":0,\"intTotalGST\":66.5100000000000051159076974727213382720947265625,\"apiMarkup\":169.490000000000009094947017729282379150390625,\"IntCommission\":0,\"apiTaxOnMarkup\":30.510000000000001563194018672220408916473388671875,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":369.490000000000009094947017729282379150390625,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":691.700000000000045474735088646411895751953125,\"BaseFareCal\":4399.9499999999998181010596454143524169921875,\"BaseFare\":3775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.240000000000009094947017729282379150390625,\"apiTaxOnMarkup\":45.75999999999999801048033987171947956085205078125,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":300,\"IntTaxOnAgencyFixMarkUp\":54,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":99.7600000000000051159076974727213382720947265625,\"PublishFare\":13754.100000000000363797880709171295166015625,\"CostToCustomer\":13754.100000000000363797880709171295166015625,\"BaseFareCal\":13199.860000000000582076609134674072265625,\"intCommisionEarnedForAgency\":554.240000000000009094947017729282379150390625,\"CostToCompany\":13199.860000000000582076609134674072265625,\"intOfferedFare\":13100.0999999999985448084771633148193359375,\"intPublishFare\":13400.0999999999985448084771633148193359375,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"595\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-18T13:00\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-18T10:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":103,\"strDepartureDtTime\":\"10:35\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103300045643\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"strTraceId\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:35\",\"ArrivalTime\":\"13:00\",\"TravelDate\":\"2021-01-18T10:35\",\"LocalFromTime\":\"2021-01-18 10:35\",\"FromUTCTime\":\"2021-01-18T10:35\",\"LocalToTime\":\"2021-01-18 13:00\",\"ToUTCTime\":\"2021-01-18T13:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":103,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13400.0999999999985448084771633148193359375,\"ApiResultIndex\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11325,\"Tax\":2075.100000000000363797880709171295166015625,\"YQTax\":0,\"OtherCharges\":1140,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.10000000000000142108547152020037174224853515625,\"AirlineGSTComponent\":582,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":13400.0999999999985448084771633148193359375,\"PublishedFare\":13754.100000000000363797880709171295166015625,\"OfferedFare\":13100.0999999999985448084771633148193359375,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":554.240000000000009094947017729282379150390625,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1383.40000000000009094947017729282379150390625,\"BaseFareCal\":8799.90999999999985448084771633148193359375,\"BaseFare\":7550,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":388,\"MFT\":5.4000000000000003552713678800500929355621337890625,\"OT\":760,\"MU\":200,\"YR\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":369.490000000000009094947017729282379150390625,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":691.700000000000045474735088646411895751953125,\"BaseFareCal\":4399.9499999999998181010596454143524169921875,\"BaseFare\":3775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"595\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-18T13:00\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-18T10:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":103,\"strDepartureDtTime\":\"10:35\",\"strArrivalDtTime\":\"13:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9607042579_3DELBOM6E5339_21656179163521184\",\"localFromDateTime\":\"2021-01-18 10:35\",\"localToDateTime\":\"2021-01-18 13:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"18\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"18\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-18\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=18%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 12:32:27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 12:32:28\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"98\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5155\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"kaniska \",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 12:32:28\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"38\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198126\",\"TPSysId\":\"198127\",\"VersionId\":[\"19189\"],\"CustomerSysId\":\"91499\",\"TrxId\":\"5565\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"},\"38\":{\"Currency\":\"INR\",\"key\":\"595\",\"Code\":\"XBPB\",\"Price\":\"4000\",\"Weight\":\"10 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"423\",\"424\",\"425\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"98\",\"38\"],\"flight_booking_id\":[\"207\"]},\"selectedSeatSession\":{\"595\":{\"49\":{\"seatNo\":\"5C\",\"seatPosition\":{\"row\":5,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"5C\",\"amount\":0},\"98\":{\"seatNo\":\"12B\",\"seatPosition\":{\"row\":12,\"column\":2},\"isBooked\":false,\"isLegroom\":true,\"code\":\"12B\",\"amount\":500},\"38\":{\"seatNo\":\"13B\",\"seatPosition\":{\"row\":13,\"column\":2},\"isBooked\":false,\"isLegroom\":true,\"code\":\"13B\",\"amount\":500}}},\"_sessiondata\":null}','2020-12-29 12:34:29'),(36,'5-2686310063_22DELBOM6E2173_21657136759965901,5-2686310063_22BOMDEL6E2036_21657136675349344','{\"BookingData\":[{\"bookingId\":\"TJS104800045648\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-01-18T18:20\",\"LocalFromTime\":\"2021-01-18 18:20\",\"FromUTCTime\":\"2021-01-18T18:20\",\"LocalToTime\":\"2021-01-18 20:25\",\"ToUTCTime\":\"2021-01-18T20:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":58,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,168\",\"ApiResultIndex\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3285.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3285.6999999999998181010596454143524169921875,\"CostToCustomer\":3285.6999999999998181010596454143524169921875,\"BaseFareCal\":3100.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3100.9499999999998181010596454143524169921875,\"intOfferedFare\":3067.6999999999998181010596454143524169921875,\"intPublishFare\":3167.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"792\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-18T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-18T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":58,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-18 12:00\",\"localToDateTime\":\"2021-01-21 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104800045648\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"strTraceId\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-01-18T18:20\",\"LocalFromTime\":\"2021-01-18 18:20\",\"FromUTCTime\":\"2021-01-18T18:20\",\"LocalToTime\":\"2021-01-18 20:25\",\"ToUTCTime\":\"2021-01-18T20:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":58,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6404.399999999999636202119290828704833984375,\"ApiResultIndex\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5093,\"Tax\":1311.40000000000009094947017729282379150390625,\"YQTax\":0,\"OtherCharges\":811,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4000000000000003552713678800500929355621337890625,\"AirlineGSTComponent\":265,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":6404.399999999999636202119290828704833984375,\"PublishedFare\":6640.399999999999636202119290828704833984375,\"OfferedFare\":6204.399999999999636202119290828704833984375,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":369.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1311.40000000000009094947017729282379150390625,\"BaseFareCal\":6270.899999999999636202119290828704833984375,\"BaseFare\":5093,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":265,\"MFT\":5.4000000000000003552713678800500929355621337890625,\"OT\":811,\"MU\":200,\"YR\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":369.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"792\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-18T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-18T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":58,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"406\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-21T20:40\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-21T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":105,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2686310063_22DELBOM6E2173_21657136759965901\",\"localFromDateTime\":\"2021-01-18 18:20\",\"localToDateTime\":\"2021-01-18 20:25\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS104800045648\",\"FlightNumber\":\"6E-2036\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2686310063_22BOMDEL6E2036_21657136675349344\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:35\",\"ArrivalTime\":\"20:40\",\"TravelDate\":\"2021-01-21T18:35\",\"LocalFromTime\":\"2021-01-21 18:35\",\"FromUTCTime\":\"2021-01-21T18:35\",\"LocalToTime\":\"2021-01-21 20:40\",\"ToUTCTime\":\"2021-01-21T20:40\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 21 Jan\",\"ArrivalDateTxt\":\"Thu, 21 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":105,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,237\",\"ApiResultIndex\":\"5-2686310063_22BOMDEL6E2036_21657136675349344\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2555,\"Tax\":681.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":133,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFare\":3354.6999999999998181010596454143524169921875,\"OfferedFare\":3136.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2686310063_22BOMDEL6E2036_21657136675349344\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.700000000000045474735088646411895751953125,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"BaseFare\":2555,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":133,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3354.6999999999998181010596454143524169921875,\"CostToCustomer\":3354.6999999999998181010596454143524169921875,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3169.9499999999998181010596454143524169921875,\"intOfferedFare\":3136.6999999999998181010596454143524169921875,\"intPublishFare\":3236.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"406\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-21T20:40\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-21T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":105,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"5-2686310063_22BOMDEL6E2036_21657136675349344\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-18 12:00\",\"localToDateTime\":\"2021-01-21 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"18\\/01\\/2021\",\"return_date\":\"21\\/01\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/01\\/2021\",\"return_dates\":\"21\\/01\\/2021\",\"strDepatureDate\":\"2021-01-18\",\"strReturnDate\":\"2021-01-21\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=18%2F01%2F2021&return_date=21%2F01%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 12:47:45\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198147\",\"TPSysId\":\"198148\",\"VersionId\":[\"19198\",\"19199\"],\"CustomerSysId\":\"91499\",\"TrxId\":\"5571\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":{\"49\":{\"Currency\":\"INR\",\"key\":\"406\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"426\"],[\"427\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_id\":[\"208\",\"209\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-29 12:48:29'),(37,'5-1044577875_10BOMDEL6E5047_21675288997947990','{\"BookingData\":[{\"bookingId\":\"TJS108800045731\",\"FlightNumber\":\"6E-5047\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"09:45\",\"TravelDate\":\"2021-01-28T07:40\",\"LocalFromTime\":\"2021-01-28 07:40\",\"FromUTCTime\":\"2021-01-28T07:40\",\"LocalToTime\":\"2021-01-28 09:45\",\"ToUTCTime\":\"2021-01-28T09:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":75,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,237\",\"ApiResultIndex\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2555,\"Tax\":681.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":133,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFare\":3354.6999999999998181010596454143524169921875,\"OfferedFare\":3136.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.700000000000045474735088646411895751953125,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"BaseFare\":2555,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":133,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3354.6999999999998181010596454143524169921875,\"CostToCustomer\":3354.6999999999998181010596454143524169921875,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3169.9499999999998181010596454143524169921875,\"intOfferedFare\":3136.6999999999998181010596454143524169921875,\"intPublishFare\":3236.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"617\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-28T09:45\",\"SegFlightNumber\":\"6E-5047\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-28T07:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108800045731\",\"FlightNumber\":\"6E-5047\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"strTraceId\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"09:45\",\"TravelDate\":\"2021-01-28T07:40\",\"LocalFromTime\":\"2021-01-28 07:40\",\"FromUTCTime\":\"2021-01-28T07:40\",\"LocalToTime\":\"2021-01-28 09:45\",\"ToUTCTime\":\"2021-01-28T09:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":75,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3236.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2555,\"Tax\":681.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":133,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFare\":3354.6999999999998181010596454143524169921875,\"OfferedFare\":3136.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.700000000000045474735088646411895751953125,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"BaseFare\":2555,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":133,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":431,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"617\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-28T09:45\",\"SegFlightNumber\":\"6E-5047\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-28T07:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1044577875_10BOMDEL6E5047_21675288997947990\",\"localFromDateTime\":\"2021-01-28 07:40\",\"localToDateTime\":\"2021-01-28 09:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"28\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"28\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-28\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=28%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"Up\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 18:02:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"103\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198433\",\"TPSysId\":\"198434\",\"VersionId\":[\"19258\"],\"CustomerSysId\":\"93900\",\"TrxId\":\"5601\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"103\":{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"433\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"103\",\"CustomerMemSysId\":[\"103\"],\"flight_booking_id\":[\"215\"]},\"selectedSeatSession\":{\"617\":{\"103\":{\"seatNo\":\"4B\",\"seatPosition\":{\"row\":4,\"column\":2},\"isBooked\":false,\"code\":\"4B\",\"amount\":350}}},\"_sessiondata\":null}','2020-12-29 18:09:48'),(38,'5-9495681453_4BOMDEL6E2059_21678617930030576','{\"BookingData\":[{\"bookingId\":\"TJS108900045750\",\"FlightNumber\":\"6E-2059\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2021-01-18T20:00\",\"LocalFromTime\":\"2021-01-18 20:00\",\"FromUTCTime\":\"2021-01-18T20:00\",\"LocalToTime\":\"2021-01-18 22:05\",\"ToUTCTime\":\"2021-01-18T22:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":104,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,237\",\"ApiResultIndex\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2555,\"Tax\":681.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":133,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFare\":3354.6999999999998181010596454143524169921875,\"OfferedFare\":3136.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.700000000000045474735088646411895751953125,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"BaseFare\":2555,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":133,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":3354.6999999999998181010596454143524169921875,\"CostToCustomer\":3354.6999999999998181010596454143524169921875,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":3169.9499999999998181010596454143524169921875,\"intOfferedFare\":3136.6999999999998181010596454143524169921875,\"intPublishFare\":3236.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"030\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-18T22:05\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-18T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":104,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"030\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"030\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"030\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"030\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"030\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108900045750\",\"FlightNumber\":\"6E-2059\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"strTraceId\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2021-01-18T20:00\",\"LocalFromTime\":\"2021-01-18 20:00\",\"FromUTCTime\":\"2021-01-18T20:00\",\"LocalToTime\":\"2021-01-18 22:05\",\"ToUTCTime\":\"2021-01-18T22:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 18 Jan\",\"ArrivalDateTxt\":\"Mon, 18 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":104,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3236.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2555,\"Tax\":681.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":133,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3236.6999999999998181010596454143524169921875,\"PublishedFare\":3354.6999999999998181010596454143524169921875,\"OfferedFare\":3136.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.700000000000045474735088646411895751953125,\"BaseFareCal\":3169.9499999999998181010596454143524169921875,\"BaseFare\":2555,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":133,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":431,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"030\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-18T22:05\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-18T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":104,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9495681453_4BOMDEL6E2059_21678617930030576\",\"localFromDateTime\":\"2021-01-18 20:00\",\"localToDateTime\":\"2021-01-18 22:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"18\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-18\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=18%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asdfasdf\",\"LastName\":\"asdfasfsa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 18:47:38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198458\",\"TPSysId\":\"198459\",\"VersionId\":[\"19264\"],\"CustomerSysId\":\"92363\",\"TrxId\":\"5610\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"437\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"30\"],\"flight_booking_id\":[\"219\"]},\"selectedSeatSession\":{\"030\":{\"30\":{\"seatNo\":\"2A\",\"seatPosition\":{\"row\":2,\"column\":1},\"isBooked\":false,\"code\":\"2A\",\"amount\":400}}},\"_sessiondata\":null}','2020-12-29 18:52:48'),(39,'4-7297135483_2DELBOMSG8287_21682590958196790','{\"BookingData\":[{\"bookingId\":\"TJS105600045768\",\"FlightNumber\":\"SG-8287\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:20\",\"ArrivalTime\":\"01:35\",\"TravelDate\":\"2020-12-29T23:20\",\"LocalFromTime\":\"2020-12-29 23:20\",\"FromUTCTime\":\"2020-12-29T23:20\",\"LocalToTime\":\"2020-12-30 01:35\",\"ToUTCTime\":\"2020-12-30T01:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4189.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":33.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":33.25,\"PublishFare\":4189.6999999999998181010596454143524169921875,\"CostToCustomer\":4189.6999999999998181010596454143524169921875,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":184.75,\"CostToCompany\":4004.9499999999998181010596454143524169921875,\"intOfferedFare\":3971.6999999999998181010596454143524169921875,\"intPublishFare\":4071.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"269\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T01:35\",\"SegFlightNumber\":\"SG-8287\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"269\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"269\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"269\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"269\",\"Code\":\"EB10\",\"Price\":3895,\"Weight\":\"10KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2020-12-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105600045768\",\"FlightNumber\":\"SG-8287\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"strTraceId\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:20\",\"ArrivalTime\":\"01:35\",\"TravelDate\":\"2020-12-29T23:20\",\"LocalFromTime\":\"2020-12-29 23:20\",\"FromUTCTime\":\"2020-12-29T23:20\",\"LocalToTime\":\"2020-12-30 01:35\",\"ToUTCTime\":\"2020-12-30T01:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 29 Dec\",\"ArrivalDateTxt\":\"Wed, 30 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.6999999999998181010596454143524169921875,\"PublishedFare\":4189.6999999999998181010596454143524169921875,\"OfferedFare\":3971.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.700000000000045474735088646411895751953125,\"BaseFareCal\":4004.9499999999998181010596454143524169921875,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":184.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"269\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2020-12-30T01:35\",\"SegFlightNumber\":\"SG-8287\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2020-12-29T23:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:20\",\"strArrivalDtTime\":\"01:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7297135483_2DELBOMSG8287_21682590958196790\",\"localFromDateTime\":\"2020-12-29 23:20\",\"localToDateTime\":\"2020-12-30 01:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"departure_date\":\"29\\/12\\/2020\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Mumbai (Bombay) Intl Airport (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"29\\/12\\/2020\",\"return_dates\":\"\",\"strDepatureDate\":\"2020-12-29\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29&departure_date=29%2F12%2F2020&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Mumbai+%28Bombay%29+Intl+Airport+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"bmatai12@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8604444404\",\"FirstName\":\"Bhupesh\",\"LastName\":\"Matai\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"LIG 95\",\"CityTitle\":\"Kanpur\",\"CitySysId\":\"13516\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-29 19:52:40\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"107\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198469\",\"TPSysId\":\"198470\",\"VersionId\":[\"19267\"],\"CustomerSysId\":\"90098\",\"TrxId\":\"5613\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"438\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"107\",\"CustomerMemSysId\":[\"107\"],\"flight_booking_id\":[\"220\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-29 19:56:09'),(40,'5-7745248223_5DELBOM6E408_21834913612375720','{\"BookingData\":[{\"bookingId\":\"TJS100900045946\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-16T06:25\",\"LocalFromTime\":\"2021-01-16 06:25\",\"FromUTCTime\":\"2021-01-16T06:25\",\"LocalToTime\":\"2021-01-16 08:45\",\"ToUTCTime\":\"2021-01-16T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 16 Jan\",\"ArrivalDateTxt\":\"Sat, 16 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":113,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFareTxt\":\"3,168\",\"ApiResultIndex\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3082.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3167.6999999999998181010596454143524169921875,\"CostToCustomer\":3167.6999999999998181010596454143524169921875,\"BaseFareCal\":3082.9499999999998181010596454143524169921875,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3082.9499999999998181010596454143524169921875,\"intOfferedFare\":3067.6999999999998181010596454143524169921875,\"intPublishFare\":3167.6999999999998181010596454143524169921875,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"965\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-16T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-16T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":113,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"965\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100900045946\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"strTraceId\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-16T06:25\",\"LocalFromTime\":\"2021-01-16 06:25\",\"FromUTCTime\":\"2021-01-16T06:25\",\"LocalToTime\":\"2021-01-16 08:45\",\"ToUTCTime\":\"2021-01-16T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 16 Jan\",\"ArrivalDateTxt\":\"Sat, 16 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":113,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"ApiResultIndex\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2538,\"Tax\":629.700000000000045474735088646411895751953125,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.70000000000000017763568394002504646778106689453125,\"AirlineGSTComponent\":132,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3167.6999999999998181010596454143524169921875,\"PublishedFare\":3167.6999999999998181010596454143524169921875,\"OfferedFare\":3067.6999999999998181010596454143524169921875,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":629.700000000000045474735088646411895751953125,\"BaseFareCal\":3082.9499999999998181010596454143524169921875,\"BaseFare\":2538,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":132,\"MFT\":2.70000000000000017763568394002504646778106689453125,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"965\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-16T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-16T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":113,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7745248223_5DELBOM6E408_21834913612375720\",\"localFromDateTime\":\"2021-01-16 06:25\",\"localToDateTime\":\"2021-01-16 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"16\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-16\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=16%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-31 14:09:16\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"198871\",\"TPSysId\":\"198872\",\"VersionId\":[\"19388\"],\"CustomerSysId\":\"90444\",\"TrxId\":\"5690\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"445\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"227\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-31 14:09:30'),(41,'4-2716297854_1DELBOMSG789_6603177627565757','{\"BookingData\":[{\"bookingId\":\"TJ109205803401\",\"FlightNumber\":\"SG-789\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-01-19T08:20\",\"LocalFromTime\":\"2021-01-19 08:20\",\"FromUTCTime\":\"2021-01-19T08:20\",\"LocalToTime\":\"2021-01-19 10:25\",\"ToUTCTime\":\"2021-01-19T10:25\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 19 Jan\",\"ArrivalDateTxt\":\"Tue, 19 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2917,\"PublishedFareTxt\":\"2,917\",\"ApiResultIndex\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2363,\"Tax\":554,\"YQTax\":0,\"OtherCharges\":405,\"Discount\":0,\"ServiceFee\":21.190000000000001278976924368180334568023681640625,\"ManagementFeeTax\":3.810000000000000053290705182007513940334320068359375,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2917,\"PublishedFare\":2917,\"OfferedFare\":2894.260000000000218278728425502777099609375,\"CommissionEarned\":22.739999999999998436805981327779591083526611328125,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.89000000000000001332267629550187848508358001708984375,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":22.739999999999998436805981327779591083526611328125,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":22.739999999999998436805981327779591083526611328125,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":554,\"BaseFareCal\":2894.260000000000218278728425502777099609375,\"BaseFare\":2363,\"CommissionEarned\":22.739999999999998436805981327779591083526611328125,\"TDS\":-0.89000000000000001332267629550187848508358001708984375,\"MF\":21.190000000000001278976924368180334568023681640625,\"YQ\":0,\"AGST\":124,\"MFT\":3.810000000000000053290705182007513940334320068359375,\"OT\":405,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":22.739999999999998436805981327779591083526611328125,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":22.739999999999998436805981327779591083526611328125,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":22.739999999999998436805981327779591083526611328125,\"IntCommissionValInPercentage\":100,\"IntCommission\":22.739999999999998436805981327779591083526611328125,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2917,\"CostToCustomer\":2917,\"BaseFareCal\":2894.260000000000218278728425502777099609375,\"intCommisionEarnedForAgency\":22.739999999999998436805981327779591083526611328125,\"CostToCompany\":2894.260000000000218278728425502777099609375,\"intOfferedFare\":2894.260000000000218278728425502777099609375,\"intPublishFare\":2917,\"TripjackMarkup\":0,\"TripjackCommission\":22.739999999999998436805981327779591083526611328125,\"TripjackTDS\":\"0.89\",\"dddddd\":{\"intOfferedFare\":2894.260000000000218278728425502777099609375,\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":22.739999999999998436805981327779591083526611328125}}},\"Segments\":[{\"segmentid\":\"722\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-19T10:25\",\"SegFlightNumber\":\"SG-789\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-19T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"EB05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"EB15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"EB20\",\"Price\":8000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"EB30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"VGSW\",\"Price\":235,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NVSW\",\"Price\":235,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"JNSW\",\"Price\":235,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"LCVS\",\"Price\":250,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"LCNS\",\"Price\":250,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"VGML\",\"Price\":325,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NVML\",\"Price\":325,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"JNML\",\"Price\":375,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"GFVG\",\"Price\":375,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"GFNV\",\"Price\":375,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"GFCM\",\"Price\":375,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"FPML\",\"Price\":375,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"DNVL\",\"Price\":375,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"DBML\",\"Price\":375,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"CHML\",\"Price\":375,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"VCC2\",\"Price\":638,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NCC6\",\"Price\":638,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NCC5\",\"Price\":638,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NCC4\",\"Price\":638,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NCC2\",\"Price\":638,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NCC1\",\"Price\":638,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109205803401\",\"FlightNumber\":\"SG-789\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"strTraceId\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-01-19T08:20\",\"LocalFromTime\":\"2021-01-19 08:20\",\"FromUTCTime\":\"2021-01-19T08:20\",\"LocalToTime\":\"2021-01-19 10:25\",\"ToUTCTime\":\"2021-01-19T10:25\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 19 Jan\",\"ArrivalDateTxt\":\"Tue, 19 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2917,\"ApiResultIndex\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2363,\"Tax\":554,\"YQTax\":0,\"OtherCharges\":405,\"Discount\":0,\"ServiceFee\":21.190000000000001278976924368180334568023681640625,\"ManagementFeeTax\":3.810000000000000053290705182007513940334320068359375,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2917,\"PublishedFare\":2917,\"OfferedFare\":2894.260000000000218278728425502777099609375,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":22.739999999999998436805981327779591083526611328125,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":554,\"BaseFareCal\":2894.260000000000218278728425502777099609375,\"BaseFare\":2363,\"CommissionEarned\":22.739999999999998436805981327779591083526611328125,\"TDS\":-0.89000000000000001332267629550187848508358001708984375,\"MF\":21.190000000000001278976924368180334568023681640625,\"YQ\":0,\"AGST\":124,\"MFT\":3.810000000000000053290705182007513940334320068359375,\"OT\":405,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":22.739999999999998436805981327779591083526611328125,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"722\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-19T10:25\",\"SegFlightNumber\":\"SG-789\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-19T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2716297854_1DELBOMSG789_6603177627565757\",\"localFromDateTime\":\"2021-01-19 08:20\",\"localToDateTime\":\"2021-01-19 10:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5155\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sdfasf\",\"LastName\":\"sdfsadfasf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5155\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2020-12-31 20:15:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"41\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"199045\",\"TPSysId\":\"199046\",\"VersionId\":[],\"CustomerSysId\":\"92363\",\"TrxId\":\"5726\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"41\":{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"NVSW\",\"Price\":\"235\",\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}},\"SelectedBaggSessionNew\":{\"41\":{\"Currency\":\"INR\",\"key\":\"722\",\"Code\":\"BOF1\",\"Price\":\"100\",\"Weight\":\"Bag Out First with 1 Bag\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"486\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"41\",\"CustomerMemSysId\":[\"41\"],\"flight_booking_id\":[\"249\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-31 20:16:24'),(42,'21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680','{\"BookingData\":[{\"bookingId\":\"TJ117105803387\",\"FlightNumber\":\"UK-223\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2021-01-21T20:00\",\"LocalFromTime\":\"2021-01-21 20:00\",\"FromUTCTime\":\"2021-01-21T20:00\",\"LocalToTime\":\"2021-01-21 22:20\",\"ToUTCTime\":\"2021-01-21T22:20\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 21 Jan\",\"ArrivalDateTxt\":\"Thu, 21 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8689,\"PublishedFareTxt\":\"8,689\",\"ApiResultIndex\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7510,\"Tax\":1179,\"YQTax\":0,\"OtherCharges\":642,\"Discount\":0,\"ServiceFee\":21.190000000000001278976924368180334568023681640625,\"ManagementFeeTax\":3.810000000000000053290705182007513940334320068359375,\"AirlineGSTComponent\":382,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":8689,\"PublishedFare\":8689,\"OfferedFare\":8689,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1179,\"BaseFareCal\":8689,\"BaseFare\":7510,\"CommissionEarned\":0,\"TDS\":0,\"MF\":21.190000000000001278976924368180334568023681640625,\"YQ\":0,\"AGST\":382,\"MFT\":3.810000000000000053290705182007513940334320068359375,\"OT\":642,\"MU\":0,\"YR\":130,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8689,\"CostToCustomer\":8689,\"BaseFareCal\":8689,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8689,\"intOfferedFare\":8689,\"intPublishFare\":8689,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":8689,\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"931\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-01-21T22:20\",\"SegFlightNumber\":\"UK-223\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-21T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-21 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"XNB\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ117105803387\",\"FlightNumber\":\"UK-223\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"strTraceId\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2021-01-21T20:00\",\"LocalFromTime\":\"2021-01-21 20:00\",\"FromUTCTime\":\"2021-01-21T20:00\",\"LocalToTime\":\"2021-01-21 22:20\",\"ToUTCTime\":\"2021-01-21T22:20\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 21 Jan\",\"ArrivalDateTxt\":\"Thu, 21 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8689,\"ApiResultIndex\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7510,\"Tax\":1179,\"YQTax\":0,\"OtherCharges\":642,\"Discount\":0,\"ServiceFee\":21.190000000000001278976924368180334568023681640625,\"ManagementFeeTax\":3.810000000000000053290705182007513940334320068359375,\"AirlineGSTComponent\":382,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":8689,\"PublishedFare\":8689,\"OfferedFare\":8689,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1179,\"BaseFareCal\":8689,\"BaseFare\":7510,\"CommissionEarned\":0,\"TDS\":0,\"MF\":21.190000000000001278976924368180334568023681640625,\"YQ\":0,\"AGST\":382,\"MFT\":3.810000000000000053290705182007513940334320068359375,\"OT\":642,\"MU\":0,\"YR\":130,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"931\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-01-21T22:20\",\"SegFlightNumber\":\"UK-223\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-21T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.rastafari.in\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-20-12-2-15-10-0071240170_0DELDXBUK223_7902847706509680\",\"localFromDateTime\":\"2021-01-21 20:00\",\"localToDateTime\":\"2021-01-21 22:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (XNB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"XNB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"departure_date\":\"21\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"XNB\",\"from\":\"DEL\",\"to\":\"XNB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"21\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-21\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28XNB%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=XNB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+DXB%2C+AE+-+Dubai+Chelsea+Tower+Bus+Station+%28XNB%29&departure_date=21%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+DXB\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":null}','2020-12-31 20:18:27'),(44,'10-2807603278_2DELBOMUK933_22199341978695807','{\"BookingData\":[{\"bookingId\":\"TJS104100046189\",\"FlightNumber\":\"UK-933\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:30\",\"ArrivalTime\":\"17:40\",\"TravelDate\":\"2021-02-22T15:30\",\"LocalFromTime\":\"2021-02-22 15:30\",\"FromUTCTime\":\"2021-02-22T15:30\",\"LocalToTime\":\"2021-02-22 17:40\",\"ToUTCTime\":\"2021-02-22T17:40\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 22 Feb\",\"ArrivalDateTxt\":\"Mon, 22 Feb\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4072.7,\"PublishedFareTxt\":\"4,073\",\"ApiResultIndex\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3370,\"Tax\":702.7,\"YQTax\":0,\"OtherCharges\":280,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":4072.7,\"PublishedFare\":4072.7,\"OfferedFare\":3972.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":702.7,\"BaseFareCal\":3987.95,\"BaseFare\":3370,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":280,\"MU\":100,\"YR\":130,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4072.7,\"CostToCustomer\":4072.7,\"BaseFareCal\":3987.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3987.95,\"intOfferedFare\":3972.7,\"intPublishFare\":4072.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":3972.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"626\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-22T17:40\",\"SegFlightNumber\":\"UK-933\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-22T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"626\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"strTraceId\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104100046189\",\"FlightNumber\":\"UK-933\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"strTraceId\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:30\",\"ArrivalTime\":\"17:40\",\"TravelDate\":\"2021-02-22T15:30\",\"LocalFromTime\":\"2021-02-22 15:30\",\"FromUTCTime\":\"2021-02-22T15:30\",\"LocalToTime\":\"2021-02-22 17:40\",\"ToUTCTime\":\"2021-02-22T17:40\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 22 Feb\",\"ArrivalDateTxt\":\"Mon, 22 Feb\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4072.7,\"ApiResultIndex\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3370,\"Tax\":702.7,\"YQTax\":0,\"OtherCharges\":280,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":4072.7,\"PublishedFare\":4072.7,\"OfferedFare\":3972.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":702.7,\"BaseFareCal\":3987.95,\"BaseFare\":3370,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":280,\"MU\":100,\"YR\":130,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"626\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-22T17:40\",\"SegFlightNumber\":\"UK-933\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-22T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"17:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-2807603278_2DELBOMUK933_22199341978695807\",\"localFromDateTime\":\"2021-02-22 15:30\",\"localToDateTime\":\"2021-02-22 17:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"22\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"22\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-22\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=22%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-04 19:26:43'),(45,'5-5168122564_6DELBOM6E408_22956555028846704','{\"BookingData\":[{\"bookingId\":\"TJS100300048054\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-21T06:25\",\"LocalFromTime\":\"2021-01-21 06:25\",\"FromUTCTime\":\"2021-01-21T06:25\",\"LocalToTime\":\"2021-01-21 08:45\",\"ToUTCTime\":\"2021-01-21T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 21 Jan\",\"ArrivalDateTxt\":\"Thu, 21 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":116,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2967.7,\"PublishedFareTxt\":\"2,968\",\"ApiResultIndex\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2348,\"Tax\":619.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":122,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2967.7,\"PublishedFare\":2967.7,\"OfferedFare\":2867.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":100,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":619.7,\"BaseFareCal\":2867.7,\"BaseFare\":2348,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":122,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":100,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":100,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":2967.7,\"CostToCustomer\":2967.7,\"BaseFareCal\":2867.7,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":2867.7,\"intOfferedFare\":2867.7,\"intPublishFare\":2967.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":2867.7,\"apiMarkup\":100,\"apiTaxOnMarkup\":0,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"455\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-21T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-21T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":116,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"455\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"455\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"455\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"455\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"455\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-21 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100300048054\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"strTraceId\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-21T06:25\",\"LocalFromTime\":\"2021-01-21 06:25\",\"FromUTCTime\":\"2021-01-21T06:25\",\"LocalToTime\":\"2021-01-21 08:45\",\"ToUTCTime\":\"2021-01-21T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 21 Jan\",\"ArrivalDateTxt\":\"Thu, 21 Jan\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":116,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2967.7,\"ApiResultIndex\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2348,\"Tax\":619.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":122,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2967.7,\"PublishedFare\":2967.7,\"OfferedFare\":2867.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":619.7,\"BaseFareCal\":2867.7,\"BaseFare\":2348,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":122,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"455\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-21T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-21T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":116,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5168122564_6DELBOM6E408_22956555028846704\",\"localFromDateTime\":\"2021-01-21 06:25\",\"localToDateTime\":\"2021-01-21 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"21\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"21\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-21\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=21%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"baibhav@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7701888604\",\"FirstName\":\"baibhav\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-13 13:45:11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"80\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"15850\",\"TPSysId\":\"15851\",\"VersionId\":[\"9463\"],\"CustomerSysId\":\"178\",\"TrxId\":\"4691\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"496\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"80\",\"CustomerMemSysId\":[\"80\"],\"flight_booking_id\":[\"260\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-13 13:45:22'),(46,'5-9943268710_2BOMBLR6E406_23127081516691141','{\"BookingData\":[{\"bookingId\":\"TJS101000048526\",\"FlightNumber\":\"6E-406\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2021-02-03T21:25\",\"LocalFromTime\":\"2021-02-03 21:25\",\"FromUTCTime\":\"2021-02-03T21:25\",\"LocalToTime\":\"2021-02-03 23:10\",\"ToUTCTime\":\"2021-02-03T23:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Feb\",\"ArrivalDateTxt\":\"Wed, 03 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":87,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2619.7,\"PublishedFareTxt\":\"2,620\",\"ApiResultIndex\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1968,\"Tax\":651.7,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":103,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2619.7,\"PublishedFare\":2619.7,\"OfferedFare\":2519.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":651.7,\"BaseFareCal\":2534.95,\"BaseFare\":1968,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":103,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":2619.7,\"CostToCustomer\":2619.7,\"BaseFareCal\":2534.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":2534.95,\"intOfferedFare\":2519.7,\"intPublishFare\":2619.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":2519.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"888\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-02-03T23:10\",\"SegFlightNumber\":\"6E-406\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-02-03T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":87,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"888\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101000048526\",\"FlightNumber\":\"6E-406\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"strTraceId\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2021-02-03T21:25\",\"LocalFromTime\":\"2021-02-03 21:25\",\"FromUTCTime\":\"2021-02-03T21:25\",\"LocalToTime\":\"2021-02-03 23:10\",\"ToUTCTime\":\"2021-02-03T23:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Feb\",\"ArrivalDateTxt\":\"Wed, 03 Feb\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":87,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2619.7,\"ApiResultIndex\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1968,\"Tax\":651.7,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":103,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2619.7,\"PublishedFare\":2619.7,\"OfferedFare\":2519.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":651.7,\"BaseFareCal\":2534.95,\"BaseFare\":1968,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":103,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"888\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-02-03T23:10\",\"SegFlightNumber\":\"6E-406\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-02-03T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":87,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9943268710_2BOMBLR6E406_23127081516691141\",\"localFromDateTime\":\"2021-02-03 21:25\",\"localToDateTime\":\"2021-02-03 23:10\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"0\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"departure_date\":\"03\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"sourceCityId\":18676,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-03\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Bengaluru+%28BLR%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=BLR&ContSysId=0&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&departure_date=03%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-15 13:05:38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"15973\",\"TPSysId\":\"15974\",\"VersionId\":[\"9572\"],\"CustomerSysId\":\"168\",\"TrxId\":\"4732\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"497\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"261\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-15 13:05:52'),(47,'10-5368135317_0DELCOKUK881_23386464318757713,10-5368135317_0COKDELUK882_23386464296565614','{\"BookingData\":[{\"bookingId\":\"TJS109500048913\",\"FlightNumber\":\"UK-881\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2021-01-28T08:00\",\"LocalFromTime\":\"2021-01-28 08:00\",\"FromUTCTime\":\"2021-01-28T08:00\",\"LocalToTime\":\"2021-01-28 11:10\",\"ToUTCTime\":\"2021-01-28T11:10\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9753.4,\"PublishedFareTxt\":\"9,753\",\"ApiResultIndex\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8270,\"Tax\":1483.4,\"YQTax\":0,\"OtherCharges\":560,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":428,\"CarrierMiscFee\":260,\"MUFee\":200,\"intPublishedFare\":9753.4,\"PublishedFare\":9753.4,\"OfferedFare\":9553.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1483.4,\"BaseFareCal\":9583.91,\"BaseFare\":8270,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":428,\"MFT\":5.4,\"OT\":560,\"MU\":200,\"YR\":260,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":9753.4,\"CostToCustomer\":9753.4,\"BaseFareCal\":9583.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":9583.91,\"intOfferedFare\":9553.4,\"intPublishFare\":9753.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9553.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"249\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-01-28T11:10\",\"SegFlightNumber\":\"UK-881\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-28T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-28 12:00\",\"localToDateTime\":\"2021-02-01 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109500048913\",\"FlightNumber\":\"UK-881\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"strTraceId\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2021-01-28T08:00\",\"LocalFromTime\":\"2021-01-28 08:00\",\"FromUTCTime\":\"2021-01-28T08:00\",\"LocalToTime\":\"2021-01-28 11:10\",\"ToUTCTime\":\"2021-01-28T11:10\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":19264.8,\"ApiResultIndex\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16326,\"Tax\":2938.8,\"YQTax\":0,\"OtherCharges\":1104,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":844,\"CarrierMiscFee\":520,\"MUFee\":400,\"intPublishedFare\":19264.8,\"PublishedFare\":19264.8,\"OfferedFare\":18864.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2938.8,\"BaseFareCal\":18925.82,\"BaseFare\":16326,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":844,\"MFT\":10.8,\"OT\":1104,\"MU\":400,\"YR\":520,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"249\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-01-28T11:10\",\"SegFlightNumber\":\"UK-881\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-28T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],[{\"segmentid\":\"830\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-02-01T15:10\",\"SegFlightNumber\":\"UK-882\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2021-02-01T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-5368135317_0DELCOKUK881_23386464318757713\",\"localFromDateTime\":\"2021-01-28 08:00\",\"localToDateTime\":\"2021-01-28 11:10\",\"strSourceAirportCode\":\"COK\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS109500048913\",\"FlightNumber\":\"UK-882\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-5368135317_0COKDELUK882_23386464296565614\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"15:10\",\"TravelDate\":\"2021-02-01T11:55\",\"LocalFromTime\":\"2021-02-01 11:55\",\"FromUTCTime\":\"2021-02-01T11:55\",\"LocalToTime\":\"2021-02-01 15:10\",\"ToUTCTime\":\"2021-02-01T15:10\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Mon, 01 Feb\",\"ArrivalDateTxt\":\"Mon, 01 Feb\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9511.4,\"PublishedFareTxt\":\"9,511\",\"ApiResultIndex\":\"10-5368135317_0COKDELUK882_23386464296565614\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8056,\"Tax\":1455.4,\"YQTax\":0,\"OtherCharges\":544,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":416,\"CarrierMiscFee\":260,\"MUFee\":200,\"intPublishedFare\":9511.4,\"PublishedFare\":9511.4,\"OfferedFare\":9311.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-5368135317_0COKDELUK882_23386464296565614\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1455.4,\"BaseFareCal\":9341.91,\"BaseFare\":8056,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":416,\"MFT\":5.4,\"OT\":544,\"MU\":200,\"YR\":260,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":9511.4,\"CostToCustomer\":9511.4,\"BaseFareCal\":9341.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":9341.91,\"intOfferedFare\":9311.4,\"intPublishFare\":9511.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9311.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"830\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-02-01T15:10\",\"SegFlightNumber\":\"UK-882\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2021-02-01T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-5368135317_0COKDELUK882_23386464296565614\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-28 12:00\",\"localToDateTime\":\"2021-02-01 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Kochi (COK)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"COK\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"departure_date\":\"28\\/01\\/2021\",\"return_date\":\"01\\/02\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Cochin Internation Arpt (COK)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"COK\",\"from\":\"DEL\",\"to\":\"COK\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"sourceCityId\":7701,\"destinationCityId\":14275,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"28\\/01\\/2021\",\"return_dates\":\"01\\/02\\/2021\",\"strDepatureDate\":\"2021-01-28\",\"strReturnDate\":\"2021-02-01\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Kochi+%28COK%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=COK&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Kochi%2C+IN+-+Cochin+Internation+Arpt+%28COK%29&departure_date=28%2F01%2F2021&return_date=01%2F02%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Cochin+Internation+Arpt+%28COK%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"taransinghbatra@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9899923966\",\"FirstName\":\"TARAN\",\"LastName\":\"BATRA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-18 13:10:41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"81\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"37\",\"CustomerSysId\":\"81\",\"EmailId\":\"taransinghbatra@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9899923966\",\"FirstName\":\"MANMEET\",\"LastName\":\"KAUR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-18 13:10:41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"156\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16212\",\"TPSysId\":\"16213\",\"VersionId\":[\"9680\",\"9681\"],\"CustomerSysId\":\"225\",\"TrxId\":\"4743\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"81\":{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VGML\",\"Price\":\"0\",\"Description\":\"Vegan Veg Meal\"},\"156\":{\"Currency\":\"INR\",\"key\":\"249\",\"Code\":\"VJML\",\"Price\":\"0\",\"Description\":\"Jain Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":{\"81\":{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VGML\",\"Price\":\"0\",\"Description\":\"Vegan Veg Meal\"},\"156\":{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"VJML\",\"Price\":\"0\",\"Description\":\"Jain Veg Meal\"}},\"flight_booking_customer_id\":[[\"498\",\"499\"],[\"500\",\"501\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"81\",\"CustomerMemSysId\":[\"81\",\"156\"],\"flight_booking_id\":[\"262\",\"263\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-18 13:11:49'),(48,'5-9306908491_10DELCOK6E2046_23386793301681330,5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551','{\"BookingData\":[{\"bookingId\":\"TJS100400048914\",\"FlightNumber\":\"6E-2046\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-28T05:25\",\"LocalFromTime\":\"2021-01-28 05:25\",\"FromUTCTime\":\"2021-01-28T05:25\",\"LocalToTime\":\"2021-01-28 08:45\",\"ToUTCTime\":\"2021-01-28T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":107,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4738.7,\"PublishedFareTxt\":\"4,739\",\"ApiResultIndex\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4034,\"Tax\":704.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":207,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4738.7,\"PublishedFare\":4738.7,\"OfferedFare\":4638.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":704.7,\"BaseFareCal\":4653.95,\"BaseFare\":4034,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":207,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4738.7,\"CostToCustomer\":4738.7,\"BaseFareCal\":4653.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":4653.95,\"intOfferedFare\":4638.7,\"intPublishFare\":4738.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4638.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"617\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-01-28T08:45\",\"SegFlightNumber\":\"6E-2046\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-28T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":107,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-28 12:00\",\"localToDateTime\":\"2021-02-01 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400048914\",\"FlightNumber\":\"6E-2046\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"strTraceId\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-01-28T05:25\",\"LocalFromTime\":\"2021-01-28 05:25\",\"FromUTCTime\":\"2021-01-28T05:25\",\"LocalToTime\":\"2021-01-28 08:45\",\"ToUTCTime\":\"2021-01-28T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Thu, 28 Jan\",\"ArrivalDateTxt\":\"Thu, 28 Jan\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":107,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10056.4,\"ApiResultIndex\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8577,\"Tax\":1479.4,\"YQTax\":0,\"OtherCharges\":802,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":442,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":10056.4,\"PublishedFare\":10056.4,\"OfferedFare\":9856.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1479.4,\"BaseFareCal\":9886.9,\"BaseFare\":8577,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":442,\"MFT\":5.4,\"OT\":802,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"617\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-01-28T08:45\",\"SegFlightNumber\":\"6E-2046\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-28T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":107,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"830\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-02-01T19:30\",\"SegFlightNumber\":\"6E-6247\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2021-02-01T17:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":100,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"17:05\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"1h 40m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"286\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-02-01T22:50\",\"SegFlightNumber\":\"6E-267\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-02-01T21:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"21:10\",\"strArrivalDtTime\":\"22:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9306908491_10DELCOK6E2046_23386793301681330\",\"localFromDateTime\":\"2021-01-28 05:25\",\"localToDateTime\":\"2021-01-28 08:45\",\"strSourceAirportCode\":\"COK\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS100400048914\",\"FlightNumber\":\"6E-6247\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:05\",\"ArrivalTime\":\"22:50\",\"TravelDate\":\"2021-02-01T17:05\",\"LocalFromTime\":\"2021-02-01 17:05\",\"FromUTCTime\":\"2021-02-01T17:05\",\"LocalToTime\":\"2021-02-01 22:50\",\"ToUTCTime\":\"2021-02-01T22:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":100,\"LAYOVERDuration\":\"1h 40m\",\"FlyingMinutes\":345,\"DepartureDateTxt\":\"Mon, 01 Feb\",\"ArrivalDateTxt\":\"Mon, 01 Feb\",\"FlightDuration\":\"5h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":73,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5317.7,\"PublishedFareTxt\":\"5,318\",\"ApiResultIndex\":\"5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4543,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":422,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":235,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5317.7,\"PublishedFare\":5317.7,\"OfferedFare\":5217.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":5232.95,\"BaseFare\":4543,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":235,\"MFT\":2.7,\"OT\":422,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":100,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":5317.7,\"CostToCustomer\":5317.7,\"BaseFareCal\":5232.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":5232.95,\"intOfferedFare\":5217.7,\"intPublishFare\":5317.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5217.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"830\",\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-02-01T19:30\",\"SegFlightNumber\":\"6E-6247\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2021-02-01T17:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":100,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"17:05\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"1h 40m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"286\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-02-01T22:50\",\"SegFlightNumber\":\"6E-267\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-02-01T21:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":73,\"strDepartureDtTime\":\"21:10\",\"strArrivalDtTime\":\"22:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"830\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9306908491_11COKAMD6E6247AMDDEL6E267_23386793219462551\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-28 12:00\",\"localToDateTime\":\"2021-02-01 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Kochi (COK)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"COK\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"departure_date\":\"28\\/01\\/2021\",\"return_date\":\"01\\/02\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Cochin Internation Arpt (COK)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"COK\",\"from\":\"DEL\",\"to\":\"COK\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"sourceCityId\":7701,\"destinationCityId\":14275,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"28\\/01\\/2021\",\"return_dates\":\"01\\/02\\/2021\",\"strDepatureDate\":\"2021-01-28\",\"strReturnDate\":\"2021-02-01\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Kochi+%28COK%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=COK&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Kochi%2C+IN+-+Cochin+Internation+Arpt+%28COK%29&departure_date=28%2F01%2F2021&return_date=01%2F02%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Cochin+Internation+Arpt+%28COK%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"parth@ineedtrip.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9953742503\",\"FirstName\":\"PARTH\",\"LastName\":\"GUPTA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-18 13:14:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"82\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16214\",\"TPSysId\":\"16215\",\"VersionId\":[\"9682\",\"9683\"],\"CustomerSysId\":\"226\",\"TrxId\":\"4744\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"502\"],[\"503\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"82\",\"CustomerMemSysId\":[\"82\"],\"flight_booking_id\":[\"264\",\"265\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-18 13:14:48'),(49,'5-9694876104_23DELBOM6E148_23564674565760802,5-9694876104_11BOMDEL6E6284_23564674485359451','{\"BookingData\":[{\"bookingId\":\"TJS109800049537\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-23T05:05\",\"LocalFromTime\":\"2021-01-23 05:05\",\"FromUTCTime\":\"2021-01-23T05:05\",\"LocalToTime\":\"2021-01-23 07:10\",\"ToUTCTime\":\"2021-01-23T07:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 23 Jan\",\"ArrivalDateTxt\":\"Sat, 23 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":154,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5647.7,\"PublishedFareTxt\":\"5,648\",\"ApiResultIndex\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":747.7,\"YQTax\":0,\"OtherCharges\":380,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5647.7,\"PublishedFare\":5647.7,\"OfferedFare\":5547.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":747.7,\"BaseFareCal\":5562.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":380,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":5647.7,\"CostToCustomer\":5647.7,\"BaseFareCal\":5562.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":5562.95,\"intOfferedFare\":5547.7,\"intPublishFare\":5647.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5547.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"902\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-23T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-23T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":154,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-23 12:00\",\"localToDateTime\":\"2021-01-23 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109800049537\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"strTraceId\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-01-23T05:05\",\"LocalFromTime\":\"2021-01-23 05:05\",\"FromUTCTime\":\"2021-01-23T05:05\",\"LocalToTime\":\"2021-01-23 07:10\",\"ToUTCTime\":\"2021-01-23T07:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 23 Jan\",\"ArrivalDateTxt\":\"Sat, 23 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":154,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":11346.4,\"ApiResultIndex\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9800,\"Tax\":1546.4,\"YQTax\":0,\"OtherCharges\":811,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":500,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":11346.4,\"PublishedFare\":11346.4,\"OfferedFare\":11146.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1546.4,\"BaseFareCal\":11176.9,\"BaseFare\":9800,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":500,\"MFT\":5.4,\"OT\":811,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"902\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-01-23T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-01-23T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":154,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"038\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-23T16:20\",\"SegFlightNumber\":\"6E-6284\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-23T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":42,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"16:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9694876104_23DELBOM6E148_23564674565760802\",\"localFromDateTime\":\"2021-01-23 05:05\",\"localToDateTime\":\"2021-01-23 07:10\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS109800049537\",\"FlightNumber\":\"6E-6284\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9694876104_11BOMDEL6E6284_23564674485359451\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:15\",\"ArrivalTime\":\"16:20\",\"TravelDate\":\"2021-01-23T14:15\",\"LocalFromTime\":\"2021-01-23 14:15\",\"FromUTCTime\":\"2021-01-23T14:15\",\"LocalToTime\":\"2021-01-23 16:20\",\"ToUTCTime\":\"2021-01-23T16:20\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 23 Jan\",\"ArrivalDateTxt\":\"Sat, 23 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":42,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5698.7,\"PublishedFareTxt\":\"5,699\",\"ApiResultIndex\":\"5-9694876104_11BOMDEL6E6284_23564674485359451\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":798.7,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5698.7,\"PublishedFare\":5698.7,\"OfferedFare\":5598.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9694876104_11BOMDEL6E6284_23564674485359451\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":798.7,\"BaseFareCal\":5613.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":5698.7,\"CostToCustomer\":5698.7,\"BaseFareCal\":5613.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":5613.95,\"intOfferedFare\":5598.7,\"intPublishFare\":5698.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5598.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"038\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-23T16:20\",\"SegFlightNumber\":\"6E-6284\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-23T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":42,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"16:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9694876104_11BOMDEL6E6284_23564674485359451\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-23 12:00\",\"localToDateTime\":\"2021-01-23 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"23\\/01\\/2021\",\"return_date\":\"23\\/01\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/01\\/2021\",\"return_dates\":\"23\\/01\\/2021\",\"strDepatureDate\":\"2021-01-23\",\"strReturnDate\":\"2021-01-23\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=23%2F01%2F2021&return_date=23%2F01%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"37\",\"EmailId\":\"gaurav@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9811192312\",\"FirstName\":\"Gaurav\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"37\",\"DOB\":null,\"Address\":\"asd\",\"CityTitle\":\"Delhi\",\"CitySysId\":\"7701\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-20 14:42:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"157\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"29AADCB9831G1ZH\",\"companyname\":\"Bangalore\",\"gstemail\":\"ban@asd.com\",\"gstphone\":\"9878987898\",\"gstaddress\":\"address\",\"gststate\":\"Bangalore\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"16337\",\"TPSysId\":\"16338\",\"VersionId\":[\"9794\",\"9795\"],\"CustomerSysId\":\"26\",\"TrxId\":\"4780\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"157\":{\"Currency\":\"INR\",\"key\":\"902\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedBaggSessionNewInb\":{\"157\":{\"Currency\":\"INR\",\"key\":\"038\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"504\"],[\"505\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"157\",\"CustomerMemSysId\":[\"157\"],\"flight_booking_id\":[\"266\",\"267\"]},\"selectedSeatSession\":{\"902\":{\"157\":{\"seatNo\":\"6B\",\"seatPosition\":{\"row\":6,\"column\":2},\"isBooked\":false,\"code\":\"6B\",\"amount\":250}},\"038\":{\"157\":{\"seatNo\":\"10E\",\"seatPosition\":{\"row\":10,\"column\":6},\"isBooked\":false,\"code\":\"10E\",\"amount\":250}}},\"_sessiondata\":null}','2021-01-20 14:46:27'),(50,'4-6724288719_1BOMDELSG790_23579400684818791','{\"BookingData\":[{\"bookingId\":\"TJS103400049674\",\"FlightNumber\":\"SG-790\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-01-27T15:25\",\"LocalFromTime\":\"2021-01-27 15:25\",\"FromUTCTime\":\"2021-01-27T15:25\",\"LocalToTime\":\"2021-01-27 17:30\",\"ToUTCTime\":\"2021-01-27T17:30\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 27 Jan\",\"ArrivalDateTxt\":\"Wed, 27 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4211.7,\"PublishedFareTxt\":\"4,212\",\"ApiResultIndex\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":840.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":262,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4211.7,\"PublishedFare\":4211.7,\"OfferedFare\":4111.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":840.7,\"BaseFareCal\":4126.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":262,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4211.7,\"CostToCustomer\":4211.7,\"BaseFareCal\":4126.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":4126.95,\"intOfferedFare\":4111.7,\"intPublishFare\":4211.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4111.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-27T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-27T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"BOF1\",\"Price\":106,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"BOF3\",\"Price\":316,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"EB05\",\"Price\":1996,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"EB10\",\"Price\":3990,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"EB15\",\"Price\":5986,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"EB20\",\"Price\":7980,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"EB30\",\"Price\":11970,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"VGSW\",\"Price\":241,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"JNSW\",\"Price\":241,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"VCC2\",\"Price\":316,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"120\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103400049674\",\"FlightNumber\":\"SG-790\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"strTraceId\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-01-27T15:25\",\"LocalFromTime\":\"2021-01-27 15:25\",\"FromUTCTime\":\"2021-01-27T15:25\",\"LocalToTime\":\"2021-01-27 17:30\",\"ToUTCTime\":\"2021-01-27T17:30\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 27 Jan\",\"ArrivalDateTxt\":\"Wed, 27 Jan\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4211.7,\"ApiResultIndex\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":840.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":262,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4211.7,\"PublishedFare\":4211.7,\"OfferedFare\":4111.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":840.7,\"BaseFareCal\":4126.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":262,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"120\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-01-27T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-01-27T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6724288719_1BOMDELSG790_23579400684818791\",\"localFromDateTime\":\"2021-01-27 15:25\",\"localToDateTime\":\"2021-01-27 17:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"27\\/01\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/01\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-01-27\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=27%2F01%2F2021&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"baibhav@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7701888604\",\"FirstName\":\"baibhav\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-01-20 18:43:50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"80\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"203932\",\"TPSysId\":\"203933\",\"VersionId\":[\"20817\"],\"CustomerSysId\":\"95069\",\"TrxId\":\"6208\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"506\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"80\",\"CustomerMemSysId\":[\"80\"],\"flight_booking_id\":[\"268\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-20 18:43:59'),(51,'5-5872398459_0BLRGOI6E636_23995588613109253,5-5872398459_0GOIBLR6E544_23995588577414491','{\"BookingData\":[{\"bookingId\":\"TJS106000050609\",\"FlightNumber\":\"6E-636\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2021-01-30T18:20\",\"LocalFromTime\":\"2021-01-30 18:20\",\"FromUTCTime\":\"2021-01-30T18:20\",\"LocalToTime\":\"2021-01-30 19:40\",\"ToUTCTime\":\"2021-01-30T19:40\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Sat, 30 Jan\",\"ArrivalDateTxt\":\"Sat, 30 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":108,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":22043.5,\"PublishedFareTxt\":\"22,044\",\"ApiResultIndex\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18000,\"Tax\":4043.5,\"YQTax\":0,\"OtherCharges\":2530,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.5,\"AirlineGSTComponent\":925,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":22043.5,\"PublishedFare\":22043.5,\"OfferedFare\":21543.5,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FAMILY\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":76.27,\"apiMarkup\":423.73,\"IntCommission\":0,\"apiTaxOnMarkup\":76.27,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":423.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":3234.8,\"BaseFareCal\":17295.82,\"BaseFare\":14400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":740,\"MFT\":10.8,\"OT\":2024,\"MU\":400,\"YR\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":808.7,\"BaseFareCal\":4323.95,\"BaseFare\":3600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":185,\"MFT\":2.7,\"OT\":506,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":423.73,\"apiTaxOnMarkup\":76.27,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":76.27,\"PublishFare\":22043.5,\"CostToCustomer\":22043.5,\"BaseFareCal\":21619.77,\"intCommisionEarnedForAgency\":423.73,\"CostToCompany\":21619.77,\"intOfferedFare\":21543.5,\"intPublishFare\":22043.5,\"TripjackMarkup\":500,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":21543.5,\"apiMarkup\":423.728813559322,\"apiTaxOnMarkup\":76.27118644067798,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"792\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-01-30T19:40\",\"SegFlightNumber\":\"6E-636\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-01-30T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":108,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"792\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-30 12:00\",\"localToDateTime\":\"2021-02-02 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":5,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106000050609\",\"FlightNumber\":\"6E-636\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"strTraceId\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2021-01-30T18:20\",\"LocalFromTime\":\"2021-01-30 18:20\",\"FromUTCTime\":\"2021-01-30T18:20\",\"LocalToTime\":\"2021-01-30 19:40\",\"ToUTCTime\":\"2021-01-30T19:40\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Sat, 30 Jan\",\"ArrivalDateTxt\":\"Sat, 30 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":108,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":38477,\"ApiResultIndex\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":30000,\"Tax\":8477,\"YQTax\":0,\"OtherCharges\":5750,\"Discount\":0,\"ServiceFee\":150,\"ManagementFeeTax\":27,\"AirlineGSTComponent\":1550,\"CarrierMiscFee\":0,\"MUFee\":1000,\"intPublishedFare\":38477,\"PublishedFare\":38477,\"OfferedFare\":37477,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":847.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":6781.6,\"BaseFareCal\":30103.64,\"BaseFare\":24000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":120,\"YQ\":0,\"AGST\":1240,\"MFT\":21.6,\"OT\":4600,\"MU\":800,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":677.96,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1695.4,\"BaseFareCal\":7525.9,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":310,\"MFT\":5.4,\"OT\":1150,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"792\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-01-30T19:40\",\"SegFlightNumber\":\"6E-636\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-01-30T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":108,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"097\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-02-02T23:25\",\"SegFlightNumber\":\"6E-544\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-02-02T22:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5872398459_0BLRGOI6E636_23995588613109253\",\"localFromDateTime\":\"2021-01-30 18:20\",\"localToDateTime\":\"2021-01-30 19:40\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":5,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS106000050609\",\"FlightNumber\":\"6E-544\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5872398459_0GOIBLR6E544_23995588577414491\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:15\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2021-02-02T22:15\",\"LocalFromTime\":\"2021-02-02 22:15\",\"FromUTCTime\":\"2021-02-02T22:15\",\"LocalToTime\":\"2021-02-02 23:25\",\"ToUTCTime\":\"2021-02-02T23:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Tue, 02 Feb\",\"ArrivalDateTxt\":\"Tue, 02 Feb\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":16433.5,\"PublishedFareTxt\":\"16,434\",\"ApiResultIndex\":\"5-5872398459_0GOIBLR6E544_23995588577414491\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12000,\"Tax\":4433.5,\"YQTax\":0,\"OtherCharges\":3220,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.5,\"AirlineGSTComponent\":625,\"CarrierMiscFee\":0,\"MUFee\":500,\"intPublishedFare\":16433.5,\"PublishedFare\":16433.5,\"OfferedFare\":15933.5,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5872398459_0GOIBLR6E544_23995588577414491\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":76.27,\"apiMarkup\":423.73,\"IntCommission\":0,\"apiTaxOnMarkup\":76.27,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":423.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":3546.8,\"BaseFareCal\":12807.82,\"BaseFare\":9600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":500,\"MFT\":10.8,\"OT\":2576,\"MU\":400,\"YR\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":886.7,\"BaseFareCal\":3201.95,\"BaseFare\":2400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":125,\"MFT\":2.7,\"OT\":644,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":423.73,\"apiTaxOnMarkup\":76.27,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":76.27,\"PublishFare\":16433.5,\"CostToCustomer\":16433.5,\"BaseFareCal\":16009.77,\"intCommisionEarnedForAgency\":423.73,\"CostToCompany\":16009.77,\"intOfferedFare\":15933.5,\"intPublishFare\":16433.5,\"TripjackMarkup\":500,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":15933.5,\"apiMarkup\":423.728813559322,\"apiTaxOnMarkup\":76.27118644067798,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"097\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-02-02T23:25\",\"SegFlightNumber\":\"6E-544\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-02-02T22:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"22:15\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"097\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"097\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"097\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"097\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"097\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5872398459_0GOIBLR6E544_23995588577414491\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-01-30 12:00\",\"localToDateTime\":\"2021-02-02 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":5,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"adults\":\"4\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BLR\",\"ContSysId_1\":\"0\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"departure_date\":\"30\\/01\\/2021\",\"return_date\":\"02\\/02\\/2021\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"BLR\",\"to\":\"GOI\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"sourceCityId\":0,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"30\\/01\\/2021\",\"return_dates\":\"02\\/02\\/2021\",\"strDepatureDate\":\"2021-01-30\",\"strReturnDate\":\"2021-02-02\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Goa+In+%28GOI%29&adults=4&childs=1&infants=0&class=2&source_city=BLR&ContSysId_1=0&destination_city=GOI&ContSysId=0&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29&departure_date=30%2F01%2F2021&return_date=02%2F02%2F2021&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-01-25 14:22:06'),(52,'5-6679161553_0DELCOK6E2046_26149495844570757','{\"BookingData\":[{\"bookingId\":\"TJS106800053990\",\"FlightNumber\":\"6E-2046\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-08T05:25\",\"LocalFromTime\":\"2021-03-08 05:25\",\"FromUTCTime\":\"2021-03-08T05:25\",\"LocalToTime\":\"2021-03-08 08:45\",\"ToUTCTime\":\"2021-03-08T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Mon, 08 Mar\",\"ArrivalDateTxt\":\"Mon, 08 Mar\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":91,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9631.4,\"PublishedFareTxt\":\"9,631\",\"ApiResultIndex\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8068,\"Tax\":1563.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":414,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":9631.4,\"PublishedFare\":9631.4,\"OfferedFare\":9431.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1563.4,\"BaseFareCal\":9461.91,\"BaseFare\":8068,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":414,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":9631.4,\"CostToCustomer\":9631.4,\"BaseFareCal\":9461.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":9461.91,\"intOfferedFare\":9431.4,\"intPublishFare\":9631.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9431.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"812\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-03-08T08:45\",\"SegFlightNumber\":\"6E-2046\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-08T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":91,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106800053990\",\"FlightNumber\":\"6E-2046\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"strTraceId\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-08T05:25\",\"LocalFromTime\":\"2021-03-08 05:25\",\"FromUTCTime\":\"2021-03-08T05:25\",\"LocalToTime\":\"2021-03-08 08:45\",\"ToUTCTime\":\"2021-03-08T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Mon, 08 Mar\",\"ArrivalDateTxt\":\"Mon, 08 Mar\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":91,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9631.4,\"ApiResultIndex\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8068,\"Tax\":1563.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":414,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":9631.4,\"PublishedFare\":9631.4,\"OfferedFare\":9431.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1563.4,\"BaseFareCal\":9461.91,\"BaseFare\":8068,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":414,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"812\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2021-03-08T08:45\",\"SegFlightNumber\":\"6E-2046\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-08T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":91,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6679161553_0DELCOK6E2046_26149495844570757\",\"localFromDateTime\":\"2021-03-08 05:25\",\"localToDateTime\":\"2021-03-08 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14275\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Kochi (COK)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"DirectFlight\":\"1\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"COK\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"departure_date\":\"08\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Cochin Internation Arpt (COK)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"COK\",\"from\":\"DEL\",\"to\":\"COK\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Kochi, IN - Cochin Internation Arpt (COK)\",\"sourceCityId\":7701,\"destinationCityId\":14275,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-08\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Kochi+%28COK%29&adults=2&childs=0&infants=0&class=2&DirectFlight=1&source_city=DEL&ContSysId_1=101&destination_city=COK&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Kochi%2C+IN+-+Cochin+Internation+Arpt+%28COK%29&departure_date=08%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Cochin+Internation+Arpt+%28COK%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"taransinghbatra@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9891715178\",\"FirstName\":\"TARAN\",\"LastName\":\"BATRA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-19 12:40:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"177\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"87\",\"EmailId\":\"taransinghbatra@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9891715178\",\"FirstName\":\"MANMEET\",\"LastName\":\"KAUR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-19 12:40:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"178\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"213468\",\"TPSysId\":\"213469\",\"VersionId\":[\"24024\"],\"CustomerSysId\":\"102707\",\"TrxId\":\"6933\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"177\":{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"},\"178\":{\"Currency\":\"INR\",\"key\":\"812\",\"Code\":\"XBPC\",\"Price\":\"6000\",\"Weight\":\"15 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"508\",\"509\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"87\",\"CustomerMemSysId\":[\"177\",\"178\"],\"flight_booking_id\":[\"270\"]},\"selectedSeatSession\":{\"812\":{\"177\":{\"seatNo\":\"8F\",\"amount\":350,\"isBooked\":false,\"isLegroom\":0,\"code\":\"8F\",\"isAisle\":0},\"178\":{\"seatNo\":\"8F\",\"amount\":350,\"isBooked\":false,\"isLegroom\":0,\"code\":\"8F\",\"isAisle\":0}}},\"_sessiondata\":null}','2021-02-19 12:46:23'),(53,'5-0147878932_0DELBOM6E2035_26411539067568353','{\"BookingData\":[{\"bookingId\":\"TJS102600054258\",\"FlightNumber\":\"6E-2035\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2021-02-22T15:55\",\"LocalFromTime\":\"2021-02-22 15:55\",\"FromUTCTime\":\"2021-02-22T15:55\",\"LocalToTime\":\"2021-02-22 17:45\",\"ToUTCTime\":\"2021-02-22T17:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Mon, 22 Feb\",\"ArrivalDateTxt\":\"Mon, 22 Feb\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5724.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5639.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":5724.7,\"CostToCustomer\":5724.7,\"BaseFareCal\":5639.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":5639.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5624.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"750\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-22T17:45\",\"SegFlightNumber\":\"6E-2035\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-22T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"750\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102600054258\",\"FlightNumber\":\"6E-2035\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"strTraceId\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2021-02-22T15:55\",\"LocalFromTime\":\"2021-02-22 15:55\",\"FromUTCTime\":\"2021-02-22T15:55\",\"LocalToTime\":\"2021-02-22 17:45\",\"ToUTCTime\":\"2021-02-22T17:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Mon, 22 Feb\",\"ArrivalDateTxt\":\"Mon, 22 Feb\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"ApiResultIndex\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5724.7,\"OfferedFare\":5624.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5639.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"750\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-22T17:45\",\"SegFlightNumber\":\"6E-2035\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-22T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0147878932_0DELBOM6E2035_26411539067568353\",\"localFromDateTime\":\"2021-02-22 15:55\",\"localToDateTime\":\"2021-02-22 17:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"22\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"22\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-22\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=22%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 13:26:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"180\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214072\",\"TPSysId\":\"214073\",\"VersionId\":[\"24210\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"6981\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"512\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"180\",\"CustomerMemSysId\":[\"180\"],\"flight_booking_id\":[\"273\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-22 13:26:45'),(54,'5-0292509098_26DELBOM6E2068_26413439314156637','{\"BookingData\":[{\"bookingId\":\"TJS105400054268\",\"FlightNumber\":\"6E-2068\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:00\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-03-04T21:00\",\"LocalFromTime\":\"2021-03-04 21:00\",\"FromUTCTime\":\"2021-03-04T21:00\",\"LocalToTime\":\"2021-03-04 23:05\",\"ToUTCTime\":\"2021-03-04T23:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 04 Mar\",\"ArrivalDateTxt\":\"Thu, 04 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":14802.199999999999,\"PublishedFareTxt\":\"14,802\",\"ApiResultIndex\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11808,\"Tax\":2994.2000000000003,\"YQTax\":0,\"OtherCharges\":1828,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":460,\"CarrierMiscFee\":0,\"MUFee\":600,\"intPublishedFare\":14802.199999999999,\"PublishedFare\":14802.2,\"OfferedFare\":14202.199999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":91.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":508.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1379.4,\"BaseFareCal\":5613.91,\"BaseFare\":4404,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":230,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1379.4,\"BaseFareCal\":5613.91,\"BaseFare\":4404,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":230,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":235.4,\"BaseFareCal\":3065.91,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":508.47,\"apiTaxOnMarkup\":91.53,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":91.53,\"PublishFare\":14802.2,\"CostToCustomer\":14802.2,\"BaseFareCal\":14293.73,\"intCommisionEarnedForAgency\":508.47,\"CostToCompany\":14293.73,\"intOfferedFare\":14202.199999999999,\"intPublishFare\":14802.199999999999,\"TripjackMarkup\":600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":14202.199999999999,\"apiMarkup\":508.47457627118644,\"apiTaxOnMarkup\":91.52542372881356,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-04T23:05\",\"SegFlightNumber\":\"6E-2068\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-04T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105400054268\",\"FlightNumber\":\"6E-2068\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"strTraceId\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:00\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-03-04T21:00\",\"LocalFromTime\":\"2021-03-04 21:00\",\"FromUTCTime\":\"2021-03-04T21:00\",\"LocalToTime\":\"2021-03-04 23:05\",\"ToUTCTime\":\"2021-03-04T23:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 04 Mar\",\"ArrivalDateTxt\":\"Thu, 04 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":14802.199999999999,\"ApiResultIndex\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11808,\"Tax\":2994.2000000000003,\"YQTax\":0,\"OtherCharges\":1828,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":460,\"CarrierMiscFee\":0,\"MUFee\":600,\"intPublishedFare\":14802.199999999999,\"PublishedFare\":14802.2,\"OfferedFare\":14202.199999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":508.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1379.4,\"BaseFareCal\":5613.91,\"BaseFare\":4404,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":230,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1379.4,\"BaseFareCal\":5613.91,\"BaseFare\":4404,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":230,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":235.4,\"BaseFareCal\":3065.91,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":0,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"865\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-04T23:05\",\"SegFlightNumber\":\"6E-2068\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-04T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0292509098_26DELBOM6E2068_26413439314156637\",\"localFromDateTime\":\"2021-03-04 21:00\",\"localToDateTime\":\"2021-03-04 23:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"04\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"04\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-04\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=04%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"191\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Asd\",\"LastName\":\"jhkhkj\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"192\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"jhkjh\",\"LastName\":\"jkhjhk\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"193\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"jkhkjh\",\"LastName\":\"hjkhk\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"194\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"kjhkjh\",\"LastName\":\"jhk\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-02-05\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"195\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"hjkhk\",\"LastName\":\"nmbmn\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-02-03\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 14:00:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"196\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214094\",\"TPSysId\":\"214095\",\"VersionId\":[\"24220\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"6982\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"191\":{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"},\"193\":{\"Currency\":\"INR\",\"key\":\"865\",\"Code\":\"XBPB\",\"Price\":\"4000\",\"Weight\":\"10 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"515\",\"516\",\"517\",\"518\",\"519\",\"520\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"31\",\"CustomerMemSysId\":[\"191\",\"192\",\"193\",\"194\",\"195\",\"196\"],\"flight_booking_id\":[\"275\"]},\"selectedSeatSession\":{\"865\":{\"191\":{\"seatNo\":\"5E\",\"seatPosition\":{\"row\":5,\"column\":6},\"isBooked\":false,\"code\":\"5E\",\"amount\":250},\"192\":{\"seatNo\":\"5F\",\"seatPosition\":{\"row\":5,\"column\":7},\"isBooked\":false,\"code\":\"5F\",\"amount\":250},\"193\":{\"seatNo\":\"8F\",\"seatPosition\":{\"row\":8,\"column\":7},\"isBooked\":false,\"code\":\"8F\",\"amount\":250},\"194\":{\"seatNo\":\"6E\",\"seatPosition\":{\"row\":6,\"column\":6},\"isBooked\":false,\"code\":\"6E\",\"amount\":250}}},\"_sessiondata\":null}','2021-02-22 14:03:41'),(55,'4-5364281616_0DELBOMSG8723_26433208748306742','{\"BookingData\":[{\"bookingId\":\"TJS105500054431\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2021-02-27T06:45\",\"LocalFromTime\":\"2021-02-27 06:45\",\"FromUTCTime\":\"2021-02-27T06:45\",\"LocalToTime\":\"2021-02-27 09:10\",\"ToUTCTime\":\"2021-02-27T09:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 27 Feb\",\"ArrivalDateTxt\":\"Sat, 27 Feb\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":17762.8,\"PublishedFareTxt\":\"17,763\",\"ApiResultIndex\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14940,\"Tax\":2822.8,\"YQTax\":0,\"OtherCharges\":1580,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":772,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17762.8,\"PublishedFare\":17762.8,\"OfferedFare\":17362.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1411.4,\"BaseFareCal\":8711.91,\"BaseFare\":7470,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":386,\"MFT\":5.4,\"OT\":790,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1411.4,\"BaseFareCal\":8711.91,\"BaseFare\":7470,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":386,\"MFT\":5.4,\"OT\":790,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":338.98,\"apiTaxOnMarkup\":61.02,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":61.02,\"PublishFare\":17762.8,\"CostToCustomer\":17762.8,\"BaseFareCal\":17423.82,\"intCommisionEarnedForAgency\":338.98,\"CostToCompany\":17423.82,\"intOfferedFare\":17362.8,\"intPublishFare\":17762.8,\"TripjackMarkup\":400,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":17362.8,\"apiMarkup\":338.9830508474576,\"apiTaxOnMarkup\":61.016949152542395,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"187\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-27T09:10\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-27T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"187\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105500054431\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"strTraceId\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2021-02-27T06:45\",\"LocalFromTime\":\"2021-02-27 06:45\",\"FromUTCTime\":\"2021-02-27T06:45\",\"LocalToTime\":\"2021-02-27 09:10\",\"ToUTCTime\":\"2021-02-27T09:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 27 Feb\",\"ArrivalDateTxt\":\"Sat, 27 Feb\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":17762.8,\"ApiResultIndex\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14940,\"Tax\":2822.8,\"YQTax\":0,\"OtherCharges\":1580,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":772,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17762.8,\"PublishedFare\":17762.8,\"OfferedFare\":17362.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1411.4,\"BaseFareCal\":8711.91,\"BaseFare\":7470,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":386,\"MFT\":5.4,\"OT\":790,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1411.4,\"BaseFareCal\":8711.91,\"BaseFare\":7470,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":386,\"MFT\":5.4,\"OT\":790,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"187\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-27T09:10\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-27T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5364281616_0DELBOMSG8723_26433208748306742\",\"localFromDateTime\":\"2021-02-27 06:45\",\"localToDateTime\":\"2021-02-27 09:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"27\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"27\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-27\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=2&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=27%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 19:30:02\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"202\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"baibhav\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 19:30:02\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"203\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"anu\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 19:30:02\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"204\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"sabir\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-22 19:30:02\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"205\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214311\",\"TPSysId\":\"214312\",\"VersionId\":[\"24293\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7002\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"533\",\"534\",\"535\",\"536\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"202\",\"203\",\"204\",\"205\"],\"flight_booking_id\":[\"279\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-22 19:30:17'),(56,'4-6792409693_0DELBOMSG8723_26493770275977007','{\"BookingData\":[{\"bookingId\":\"TJS108900054490\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2021-02-26T06:45\",\"LocalFromTime\":\"2021-02-26 06:45\",\"FromUTCTime\":\"2021-02-26T06:45\",\"LocalToTime\":\"2021-02-26 09:10\",\"ToUTCTime\":\"2021-02-26T09:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4702.7,\"PublishedFareTxt\":\"4,703\",\"ApiResultIndex\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3985,\"Tax\":717.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":205,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4702.7,\"PublishedFare\":4702.7,\"OfferedFare\":4602.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":717.7,\"BaseFareCal\":4617.95,\"BaseFare\":3985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":205,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4702.7,\"CostToCustomer\":4702.7,\"BaseFareCal\":4617.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":4617.95,\"intOfferedFare\":4602.7,\"intPublishFare\":4702.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4602.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"880\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T09:10\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"880\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108900054490\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"strTraceId\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"09:10\",\"TravelDate\":\"2021-02-26T06:45\",\"LocalFromTime\":\"2021-02-26 06:45\",\"FromUTCTime\":\"2021-02-26T06:45\",\"LocalToTime\":\"2021-02-26 09:10\",\"ToUTCTime\":\"2021-02-26T09:10\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4702.7,\"ApiResultIndex\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3985,\"Tax\":717.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":205,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4702.7,\"PublishedFare\":4702.7,\"OfferedFare\":4602.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":717.7,\"BaseFareCal\":4617.95,\"BaseFare\":3985,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":205,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"880\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T09:10\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"09:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6792409693_0DELBOMSG8723_26493770275977007\",\"localFromDateTime\":\"2021-02-26 06:45\",\"localToDateTime\":\"2021-02-26 09:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"26\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=26%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 12:24:39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"206\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214392\",\"TPSysId\":\"214393\",\"VersionId\":[\"24328\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7020\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"537\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"206\",\"CustomerMemSysId\":[\"206\"],\"flight_booking_id\":[\"280\"]},\"selectedSeatSession\":{\"880\":{\"206\":{\"seatNo\":\"9A\",\"seatPosition\":{\"row\":9,\"column\":1},\"isBooked\":false,\"code\":\"9A\",\"amount\":300}}},\"_sessiondata\":null}','2021-02-23 12:29:04'),(57,'5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751','{\"BookingData\":[{\"bookingId\":\"TJS101900054496\",\"FlightNumber\":\"6E-2257\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"11:20\",\"TravelDate\":\"2021-02-26T06:40\",\"LocalFromTime\":\"2021-02-26 06:40\",\"FromUTCTime\":\"2021-02-26T06:40\",\"LocalToTime\":\"2021-02-26 11:20\",\"ToUTCTime\":\"2021-02-26T11:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":280,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"4h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":33,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26986.8,\"PublishedFareTxt\":\"26,987\",\"ApiResultIndex\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":23292,\"Tax\":3694.8,\"YQTax\":0,\"OtherCharges\":2028,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1196,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":26986.8,\"PublishedFare\":26986.8,\"OfferedFare\":26586.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1847.4,\"BaseFareCal\":13323.91,\"BaseFare\":11646,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":598,\"MFT\":5.4,\"OT\":1014,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1847.4,\"BaseFareCal\":13323.91,\"BaseFare\":11646,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":598,\"MFT\":5.4,\"OT\":1014,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":338.98,\"apiTaxOnMarkup\":61.02,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":61.02,\"PublishFare\":26986.8,\"CostToCustomer\":26986.8,\"BaseFareCal\":26647.82,\"intCommisionEarnedForAgency\":338.98,\"CostToCompany\":26647.82,\"intOfferedFare\":26586.8,\"intPublishFare\":26986.8,\"TripjackMarkup\":400,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":26586.8,\"apiMarkup\":338.9830508474576,\"apiTaxOnMarkup\":61.016949152542395,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"641\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-02-26T08:15\",\"SegFlightNumber\":\"6E-2257\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T06:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":105,\"NoOfSeatAvailable\":33,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"567\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T11:20\",\"SegFlightNumber\":\"6E-5363\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-02-26T10:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":33,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"11:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101900054496\",\"FlightNumber\":\"6E-2257\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"strTraceId\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"11:20\",\"TravelDate\":\"2021-02-26T06:40\",\"LocalFromTime\":\"2021-02-26 06:40\",\"FromUTCTime\":\"2021-02-26T06:40\",\"LocalToTime\":\"2021-02-26 11:20\",\"ToUTCTime\":\"2021-02-26T11:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":280,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"4h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":33,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26986.8,\"ApiResultIndex\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":23292,\"Tax\":3694.8,\"YQTax\":0,\"OtherCharges\":2028,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1196,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":26986.8,\"PublishedFare\":26986.8,\"OfferedFare\":26586.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1847.4,\"BaseFareCal\":13323.91,\"BaseFare\":11646,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":598,\"MFT\":5.4,\"OT\":1014,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1847.4,\"BaseFareCal\":13323.91,\"BaseFare\":11646,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":598,\"MFT\":5.4,\"OT\":1014,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"641\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-02-26T08:15\",\"SegFlightNumber\":\"6E-2257\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T06:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":105,\"NoOfSeatAvailable\":33,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"567\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T11:20\",\"SegFlightNumber\":\"6E-5363\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-02-26T10:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":33,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"11:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6179816724_13DELAMD6E2257AMDBOM6E5363_26495072593353751\",\"localFromDateTime\":\"2021-02-26 06:40\",\"localToDateTime\":\"2021-02-26 11:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"26\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"26\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=2&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=26%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"baibhav\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 12:40:15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"207\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"vivek\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 12:40:15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"208\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"sanju\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 12:40:15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"209\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"shashi\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 12:40:15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"210\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214414\",\"TPSysId\":\"214415\",\"VersionId\":[\"24338\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7022\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"538\",\"539\",\"540\",\"541\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"207\",\"208\",\"209\",\"210\"],\"flight_booking_id\":[\"281\"]},\"selectedSeatSession\":{\"567\":{\"207\":{\"seatNo\":\"17A\",\"seatPosition\":{\"row\":17,\"column\":1},\"isBooked\":false,\"code\":\"17A\",\"amount\":250},\"208\":{\"seatNo\":\"17B\",\"seatPosition\":{\"row\":17,\"column\":2},\"isBooked\":false,\"code\":\"17B\",\"amount\":150},\"209\":{\"seatNo\":\"18A\",\"seatPosition\":{\"row\":18,\"column\":1},\"isBooked\":false,\"code\":\"18A\",\"amount\":250},\"210\":{\"seatNo\":\"18B\",\"seatPosition\":{\"row\":18,\"column\":2},\"isBooked\":false,\"code\":\"18B\",\"amount\":150}}},\"_sessiondata\":null}','2021-02-23 12:41:35'),(58,'4-1859324359_3DELBOMSG2871_26520797860726017','{\"BookingData\":[{\"bookingId\":\"TJS102800054557\",\"FlightNumber\":\"SG-2871\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2021-03-10T11:25\",\"LocalFromTime\":\"2021-03-10 11:25\",\"FromUTCTime\":\"2021-03-10T11:25\",\"LocalToTime\":\"2021-03-10 15:50\",\"ToUTCTime\":\"2021-03-10T15:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Wed, 10 Mar\",\"ArrivalDateTxt\":\"Wed, 10 Mar\",\"FlightDuration\":\"4h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4071.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":3986.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4071.7,\"CostToCustomer\":4071.7,\"BaseFareCal\":3986.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3986.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":3971.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-10T15:50\",\"SegFlightNumber\":\"SG-2871\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-10T11:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"758\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-10 12:00\",\"localToDateTime\":\"2021-03-16 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102800054557\",\"FlightNumber\":\"SG-2871\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"strTraceId\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2021-03-10T11:25\",\"LocalFromTime\":\"2021-03-10 11:25\",\"FromUTCTime\":\"2021-03-10T11:25\",\"LocalToTime\":\"2021-03-10 15:50\",\"ToUTCTime\":\"2021-03-10T15:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Wed, 10 Mar\",\"ArrivalDateTxt\":\"Wed, 10 Mar\",\"FlightDuration\":\"4h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4071.7,\"OfferedFare\":3971.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":3986.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"758\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-10T15:50\",\"SegFlightNumber\":\"SG-2871\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-10T11:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1859324359_3DELBOMSG2871_26520797860726017\",\"localFromDateTime\":\"2021-03-10 11:25\",\"localToDateTime\":\"2021-03-10 15:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"DirectFlight\":\"1\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"10\\/03\\/2021\",\"return_date\":\"16\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"10\\/03\\/2021\",\"return_dates\":\"16\\/03\\/2021\",\"strDepatureDate\":\"2021-03-10\",\"strReturnDate\":\"2021-03-16\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&DirectFlight=1&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=10%2F03%2F2021&return_date=16%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"taransinghbatra@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9891715178\",\"FirstName\":\"TARAN\",\"LastName\":\"BATRA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-23 19:49:22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"211\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"214732\",\"TPSysId\":\"214733\",\"VersionId\":[\"24478\"],\"CustomerSysId\":\"102707\",\"TrxId\":\"7059\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"542\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"211\",\"CustomerMemSysId\":[\"211\"],\"flight_booking_id\":[\"282\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-23 19:51:14'),(59,'5-7433920231_2DELBOM6E6957_26755988037293692','{\"BookingData\":[{\"bookingId\":\"TJS109300054842\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2021-02-26T19:20\",\"LocalFromTime\":\"2021-02-26 19:20\",\"FromUTCTime\":\"2021-02-26T19:20\",\"LocalToTime\":\"2021-02-26 21:35\",\"ToUTCTime\":\"2021-02-26T21:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15377.1,\"PublishedFareTxt\":\"15,377\",\"ApiResultIndex\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13500,\"Tax\":1877.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":610,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":15377.1,\"PublishedFare\":15377.1,\"OfferedFare\":15077.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":45.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":254.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.7,\"BaseFareCal\":6794.95,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":305,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":879.7,\"BaseFareCal\":6794.95,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":305,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1532.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":45.76,\"PublishFare\":15377.1,\"CostToCustomer\":15377.1,\"BaseFareCal\":15122.86,\"intCommisionEarnedForAgency\":254.24,\"CostToCompany\":15122.86,\"intOfferedFare\":15077.1,\"intPublishFare\":15377.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":15077.1,\"apiMarkup\":254.23728813559322,\"apiTaxOnMarkup\":45.76271186440678,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"145\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"145\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"145\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"145\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"145\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"145\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-02-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109300054842\",\"FlightNumber\":\"6E-6957\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"strTraceId\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2021-02-26T19:20\",\"LocalFromTime\":\"2021-02-26 19:20\",\"FromUTCTime\":\"2021-02-26T19:20\",\"LocalToTime\":\"2021-02-26 21:35\",\"ToUTCTime\":\"2021-02-26T21:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 26 Feb\",\"ArrivalDateTxt\":\"Fri, 26 Feb\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15377.1,\"ApiResultIndex\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13500,\"Tax\":1877.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":610,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":15377.1,\"PublishedFare\":15377.1,\"OfferedFare\":15077.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":254.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.7,\"BaseFareCal\":6794.95,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":305,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":879.7,\"BaseFareCal\":6794.95,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":305,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1532.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"145\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-02-26T21:35\",\"SegFlightNumber\":\"6E-6957\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-02-26T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7433920231_2DELBOM6E6957_26755988037293692\",\"localFromDateTime\":\"2021-02-26 19:20\",\"localToDateTime\":\"2021-02-26 21:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"26\\/02\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"26\\/02\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-02-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=26%2F02%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:07:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"216\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Parth\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:07:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"217\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"31\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Dhruv\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-02-03\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:07:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"218\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216038\",\"TPSysId\":\"216039\",\"VersionId\":[\"24869\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7143\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"551\",\"552\",\"553\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"31\",\"CustomerMemSysId\":[\"216\",\"217\",\"218\"],\"flight_booking_id\":[\"285\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 13:08:46'),(60,'5-1016279933_2DELBOM6E408_26757040807219197','{\"BookingData\":[{\"bookingId\":\"TJS102400054846\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-19T06:25\",\"LocalFromTime\":\"2021-03-19 06:25\",\"FromUTCTime\":\"2021-03-19T06:25\",\"LocalToTime\":\"2021-03-19 08:45\",\"ToUTCTime\":\"2021-03-19T08:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"\",\"DestPlaceSysId\":\"\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":110,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9927.4,\"PublishedFareTxt\":\"9,927\",\"ApiResultIndex\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8350,\"Tax\":1577.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":428,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":9927.4,\"PublishedFare\":9927.4,\"OfferedFare\":9727.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FLEXI PLUS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1577.4,\"BaseFareCal\":9757.91,\"BaseFare\":8350,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":428,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":9927.4,\"CostToCustomer\":9927.4,\"BaseFareCal\":9757.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":9757.91,\"intOfferedFare\":9727.4,\"intPublishFare\":9927.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9727.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"264\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":110,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"264\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"264\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"264\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"264\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"264\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"\",\"intDestinationCityId\":\"\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102400054846\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"strTraceId\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-19T06:25\",\"LocalFromTime\":\"2021-03-19 06:25\",\"FromUTCTime\":\"2021-03-19T06:25\",\"LocalToTime\":\"2021-03-19 08:45\",\"ToUTCTime\":\"2021-03-19T08:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"\",\"DestPlaceSysId\":\"\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":110,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9927.4,\"ApiResultIndex\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8350,\"Tax\":1577.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":428,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":9927.4,\"PublishedFare\":9927.4,\"OfferedFare\":9727.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1577.4,\"BaseFareCal\":9757.91,\"BaseFare\":8350,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":428,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"264\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":110,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1016279933_2DELBOM6E408_26757040807219197\",\"localFromDateTime\":\"2021-03-19 06:25\",\"localToDateTime\":\"2021-03-19 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"\",\"intDestinationCityId\":\"\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":\"\",\"destinationCityId\":\"\",\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 13:32:49'),(61,'5-2127947431_26DELBOM6E171_26757742298804823,5-2127947431_29BOMDEL6E5049_26757742197367104','{\"BookingData\":[{\"bookingId\":\"TJS107300054847\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-04-12T02:30\",\"LocalFromTime\":\"2021-04-12 02:30\",\"FromUTCTime\":\"2021-04-12T02:30\",\"LocalToTime\":\"2021-04-12 04:35\",\"ToUTCTime\":\"2021-04-12T04:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":5805.4,\"PublishedFareTxt\":\"5,805\",\"ApiResultIndex\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4424,\"Tax\":1381.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":232,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":5805.4,\"PublishedFare\":5805.4,\"OfferedFare\":5605.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1381.4,\"BaseFareCal\":5635.91,\"BaseFare\":4424,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":232,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":5805.4,\"CostToCustomer\":5805.4,\"BaseFareCal\":5635.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":5635.91,\"intOfferedFare\":5605.4,\"intPublishFare\":5805.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5605.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"533\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-12T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-12T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-12 12:00\",\"localToDateTime\":\"2021-04-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107300054847\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"strTraceId\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-04-12T02:30\",\"LocalFromTime\":\"2021-04-12 02:30\",\"FromUTCTime\":\"2021-04-12T02:30\",\"LocalToTime\":\"2021-04-12 04:35\",\"ToUTCTime\":\"2021-04-12T04:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11560.8,\"ApiResultIndex\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8850,\"Tax\":2710.8,\"YQTax\":0,\"OtherCharges\":1776,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":464,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":11560.8,\"PublishedFare\":11560.8,\"OfferedFare\":11160.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2710.8,\"BaseFareCal\":11221.82,\"BaseFare\":8850,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":464,\"MFT\":10.8,\"OT\":1776,\"MU\":400,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"533\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-12T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-12T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"961\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-15T09:15\",\"SegFlightNumber\":\"6E-5049\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-15T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2127947431_26DELBOM6E171_26757742298804823\",\"localFromDateTime\":\"2021-04-12 02:30\",\"localToDateTime\":\"2021-04-12 04:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS107300054847\",\"FlightNumber\":\"6E-5049\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2021-04-15T07:00\",\"LocalFromTime\":\"2021-04-15 07:00\",\"FromUTCTime\":\"2021-04-15T07:00\",\"LocalToTime\":\"2021-04-15 09:15\",\"ToUTCTime\":\"2021-04-15T09:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 15 Apr\",\"ArrivalDateTxt\":\"Thu, 15 Apr\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":5755.4,\"PublishedFareTxt\":\"5,755\",\"ApiResultIndex\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4426,\"Tax\":1329.4,\"YQTax\":0,\"OtherCharges\":862,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":232,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":5755.4,\"PublishedFare\":5755.4,\"OfferedFare\":5555.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1329.4,\"BaseFareCal\":5585.91,\"BaseFare\":4426,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":232,\"MFT\":5.4,\"OT\":862,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":5755.4,\"CostToCustomer\":5755.4,\"BaseFareCal\":5585.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":5585.91,\"intOfferedFare\":5555.4,\"intPublishFare\":5755.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5555.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"961\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-15T09:15\",\"SegFlightNumber\":\"6E-5049\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-15T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-12 12:00\",\"localToDateTime\":\"2021-04-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"12\\/04\\/2021\",\"return_date\":\"15\\/04\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/04\\/2021\",\"return_dates\":\"15\\/04\\/2021\",\"strDepatureDate\":\"2021-04-12\",\"strReturnDate\":\"2021-04-15\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=12%2F04%2F2021&return_date=15%2F04%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:45:34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:45:34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"220\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216058\",\"TPSysId\":\"216059\",\"VersionId\":[\"24879\",\"24880\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7144\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"},\"220\":{\"Currency\":\"INR\",\"key\":\"533\",\"Code\":\"XBPC\",\"Price\":\"6000\",\"Weight\":\"15 Kg\"}},\"SelectedBaggSessionNewInb\":{\"49\":{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"},\"220\":{\"Currency\":\"INR\",\"key\":\"961\",\"Code\":\"XBPA\",\"Price\":\"2000\",\"Weight\":\"5 Kg\"}},\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"554\",\"555\"],[\"556\",\"557\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"220\"],\"flight_booking_id\":[\"286\",\"287\"]},\"selectedSeatSession\":{\"533\":{\"49\":{\"seatNo\":\"6C\",\"seatPosition\":{\"row\":6,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"6C\",\"amount\":250},\"220\":{\"seatNo\":\"11E\",\"seatPosition\":{\"row\":11,\"column\":6},\"isBooked\":false,\"code\":\"11E\",\"amount\":150}},\"961\":{\"49\":{\"seatNo\":\"8F\",\"seatPosition\":{\"row\":8,\"column\":7},\"isBooked\":false,\"code\":\"8F\",\"amount\":250},\"220\":{\"seatNo\":\"12C\",\"seatPosition\":{\"row\":12,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"12C\",\"amount\":250}}},\"_sessiondata\":null}','2021-02-26 13:46:40'),(62,'10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243','{\"BookingData\":[{\"bookingId\":\"TJS117700054848\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2021-04-12T04:00\",\"LocalFromTime\":\"2021-04-12 04:00\",\"FromUTCTime\":\"2021-04-12T04:00\",\"LocalToTime\":\"2021-04-12 09:20\",\"ToUTCTime\":\"2021-04-12T09:20\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":410,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"5h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15890,\"Tax\":17346.800000000003,\"YQTax\":8692,\"OtherCharges\":6162,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1270,\"CarrierMiscFee\":752,\"MUFee\":400,\"intPublishedFare\":33236.8,\"PublishedFare\":33236.8,\"OfferedFare\":270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17346.800000000003,\"BaseFareCal\":32897.82000000001,\"BaseFare\":15890,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":8692,\"AGST\":1270,\"MFT\":10.8,\"OT\":6162,\"MU\":400,\"YR\":752,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[{\"segmentid\":\"974\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-04-12T06:00\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-12T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":120,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"420\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-04-12T09:20\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-04-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-12 12:00\",\"localToDateTime\":\"2021-04-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS117700054848\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"strTraceId\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:00\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2021-04-12T04:00\",\"LocalFromTime\":\"2021-04-12 04:00\",\"FromUTCTime\":\"2021-04-12T04:00\",\"LocalToTime\":\"2021-04-12 09:20\",\"ToUTCTime\":\"2021-04-12T09:20\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":410,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"5h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":33236.8,\"ApiResultIndex\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15890,\"Tax\":17346.800000000003,\"YQTax\":8692,\"OtherCharges\":6162,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1270,\"CarrierMiscFee\":752,\"MUFee\":400,\"intPublishedFare\":33236.8,\"PublishedFare\":33236.8,\"OfferedFare\":270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17346.800000000003,\"BaseFareCal\":32897.82000000001,\"BaseFare\":15890,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":8692,\"AGST\":1270,\"MFT\":10.8,\"OT\":6162,\"MU\":400,\"YR\":752,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[[{\"segmentid\":\"974\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-04-12T06:00\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-12T04:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":120,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:00\",\"strArrivalDtTime\":\"06:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"420\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-04-12T09:20\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-04-12T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],[{\"segmentid\":\"906\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-04-15T19:00\",\"SegFlightNumber\":\"EY-5421\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-04-15T17:40\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":140,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:40\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 20m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"140\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-16T02:30\",\"SegFlightNumber\":\"EY-218\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-04-15T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"02:30\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-2218143703_1DELAUHEY211AUHXNBEY5418XNBAUHEY5421AUHDELEY218_26758516285921243\",\"localFromDateTime\":\"2021-04-12 04:00\",\"localToDateTime\":\"2021-04-12 09:20\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS117700054848\",\"FlightNumber\":\"EY-5421\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"17:40\",\"ArrivalTime\":\"02:30\",\"TravelDate\":\"2021-04-15T17:40\",\"LocalFromTime\":\"2021-04-15 17:40\",\"FromUTCTime\":\"2021-04-15T17:40\",\"LocalToTime\":\"2021-04-16 02:30\",\"ToUTCTime\":\"2021-04-16T02:30\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":140,\"LAYOVERDuration\":\"2h 20m\",\"FlyingMinutes\":440,\"DepartureDateTxt\":\"Thu, 15 Apr\",\"ArrivalDateTxt\":\"Fri, 16 Apr\",\"FlightDuration\":\"8h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"906\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-04-15T19:00\",\"SegFlightNumber\":\"EY-5421\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-04-15T17:40\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":140,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:40\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"2h 20m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"140\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-16T02:30\",\"SegFlightNumber\":\"EY-218\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-04-15T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"02:30\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"5-2127947431_29BOMDEL6E5049_26757742197367104\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-12 12:00\",\"localToDateTime\":\"2021-04-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"12\\/04\\/2021\",\"return_date\":\"15\\/04\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/04\\/2021\",\"return_dates\":\"15\\/04\\/2021\",\"strDepatureDate\":\"2021-04-12\",\"strReturnDate\":\"2021-04-15\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=12%2F04%2F2021&return_date=15%2F04%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-02-18\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:50:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"NHJHKJ7689\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-12-25\",\"passporIssue\":\"2019-12-25\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-02-18\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:50:47\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"NHJHKJ7689\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-12-25\",\"passporIssue\":\"2019-12-25\",\"CustomerMemberSysId\":\"221\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216061\",\"TPSysId\":\"216062\",\"VersionId\":[\"24882\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7146\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"974\",\"Code\":\"AVML\",\"Price\":\"0\",\"Description\":\"Hindu Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":{\"49\":{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VLML\",\"Price\":\"0\",\"Description\":\"Lacto-Ovo Veg Meal\"},\"221\":{\"Currency\":\"INR\",\"key\":\"906\",\"Code\":\"VJML\",\"Price\":\"0\",\"Description\":\"Jain Veg Meal\"}},\"flight_booking_customer_id\":[[\"558\",\"559\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"221\"],\"flight_booking_id\":[\"288\",\"289\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 13:52:40'),(63,'10-0069163400_3DELBOMUK943_26758781527514397','{\"BookingData\":[{\"bookingId\":\"TJS106200054849\",\"FlightNumber\":\"UK-943\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"09:25\",\"TravelDate\":\"2021-03-23T07:15\",\"LocalFromTime\":\"2021-03-23 07:15\",\"FromUTCTime\":\"2021-03-23T07:15\",\"LocalToTime\":\"2021-03-23 09:25\",\"ToUTCTime\":\"2021-03-23T09:25\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"PublishedFareTxt\":\"3,067\",\"ApiResultIndex\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2337,\"Tax\":729.7,\"YQTax\":0,\"OtherCharges\":358,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3066.7,\"OfferedFare\":2966.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":729.7,\"BaseFareCal\":2981.95,\"BaseFare\":2337,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3066.7,\"CostToCustomer\":3066.7,\"BaseFareCal\":2981.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":2981.95,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":2966.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T09:25\",\"SegFlightNumber\":\"UK-943\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T07:15\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106200054849\",\"FlightNumber\":\"UK-943\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"strTraceId\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"09:25\",\"TravelDate\":\"2021-03-23T07:15\",\"LocalFromTime\":\"2021-03-23 07:15\",\"FromUTCTime\":\"2021-03-23T07:15\",\"LocalToTime\":\"2021-03-23 09:25\",\"ToUTCTime\":\"2021-03-23T09:25\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"ApiResultIndex\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2337,\"Tax\":729.7,\"YQTax\":0,\"OtherCharges\":358,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3066.7,\"OfferedFare\":2966.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":729.7,\"BaseFareCal\":2981.95,\"BaseFare\":2337,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T09:25\",\"SegFlightNumber\":\"UK-943\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T07:15\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-0069163400_3DELBOMUK943_26758781527514397\",\"localFromDateTime\":\"2021-03-23 07:15\",\"localToDateTime\":\"2021-03-23 09:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=23%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 13:54:21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"222\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216066\",\"TPSysId\":\"216067\",\"VersionId\":[\"24883\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7147\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"560\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"222\",\"CustomerMemSysId\":[\"222\"],\"flight_booking_id\":[\"290\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 13:54:42'),(64,'5-9104543668_10DELBOM6E5328_26765246582545589','{\"BookingData\":[{\"bookingId\":\"TJS100400054858\",\"FlightNumber\":\"6E-5328\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:30\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-04-07T10:30\",\"LocalFromTime\":\"2021-04-07 10:30\",\"FromUTCTime\":\"2021-04-07T10:30\",\"LocalToTime\":\"2021-04-07 12:40\",\"ToUTCTime\":\"2021-04-07T12:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 07 Apr\",\"ArrivalDateTxt\":\"Wed, 07 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":5805.4,\"PublishedFareTxt\":\"5,805\",\"ApiResultIndex\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4424,\"Tax\":1381.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":232,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":5805.4,\"PublishedFare\":5805.4,\"OfferedFare\":5605.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1381.4,\"BaseFareCal\":5635.91,\"BaseFare\":4424,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":232,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":5805.4,\"CostToCustomer\":5805.4,\"BaseFareCal\":5635.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":5635.91,\"intOfferedFare\":5605.4,\"intPublishFare\":5805.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5605.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"016\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-07T12:40\",\"SegFlightNumber\":\"6E-5328\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-07T10:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"10:30\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400054858\",\"FlightNumber\":\"6E-5328\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"strTraceId\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:30\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-04-07T10:30\",\"LocalFromTime\":\"2021-04-07 10:30\",\"FromUTCTime\":\"2021-04-07T10:30\",\"LocalToTime\":\"2021-04-07 12:40\",\"ToUTCTime\":\"2021-04-07T12:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 07 Apr\",\"ArrivalDateTxt\":\"Wed, 07 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":5805.4,\"ApiResultIndex\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4424,\"Tax\":1381.4,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":232,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":5805.4,\"PublishedFare\":5805.4,\"OfferedFare\":5605.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1381.4,\"BaseFareCal\":5635.91,\"BaseFare\":4424,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":232,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"016\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-07T12:40\",\"SegFlightNumber\":\"6E-5328\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-07T10:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"10:30\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9104543668_10DELBOM6E5328_26765246582545589\",\"localFromDateTime\":\"2021-04-07 10:30\",\"localToDateTime\":\"2021-04-07 12:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"07\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-07\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=07%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 15:41:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 15:41:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"223\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216110\",\"TPSysId\":\"216111\",\"VersionId\":[\"24890\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7153\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"016\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"561\",\"562\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"223\"],\"flight_booking_id\":[\"291\"]},\"selectedSeatSession\":{\"016\":{\"49\":{\"seatNo\":\"6C\",\"seatPosition\":{\"row\":6,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"6C\",\"amount\":250},\"223\":{\"seatNo\":\"8A\",\"seatPosition\":{\"row\":8,\"column\":1},\"isBooked\":false,\"code\":\"8A\",\"amount\":250}}},\"_sessiondata\":null}','2021-02-26 15:42:57'),(65,'10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096','{\"BookingData\":[{\"bookingId\":\"TJS119300054860\",\"FlightNumber\":\"EY-223\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"07:35\",\"ArrivalTime\":\"15:20\",\"TravelDate\":\"2021-05-12T07:35\",\"LocalFromTime\":\"2021-05-12 07:35\",\"FromUTCTime\":\"2021-05-12T07:35\",\"LocalToTime\":\"2021-05-12 15:20\",\"ToUTCTime\":\"2021-05-12T15:20\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":265,\"LAYOVERDuration\":\"4h 25m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Wed, 12 May\",\"ArrivalDateTxt\":\"Wed, 12 May\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17400,\"Tax\":38768.8,\"YQTax\":26076,\"OtherCharges\":6162,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":5308,\"CarrierMiscFee\":752,\"MUFee\":400,\"intPublishedFare\":56168.8,\"PublishedFare\":56168.8,\"OfferedFare\":270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"BUSINESS\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":38768.8,\"BaseFareCal\":55829.82000000001,\"BaseFare\":17400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":26076,\"AGST\":5308,\"MFT\":10.8,\"OT\":6162,\"MU\":400,\"YR\":752,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[{\"segmentid\":\"371\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-05-12T09:35\",\"SegFlightNumber\":\"EY-223\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-12T07:35\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":265,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:35\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"4h 25m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"402\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-05-12T15:20\",\"SegFlightNumber\":\"EY-5424\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-05-12T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-12 12:00\",\"localToDateTime\":\"2021-05-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"XNB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS119300054860\",\"FlightNumber\":\"EY-223\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"strTraceId\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"07:35\",\"ArrivalTime\":\"15:20\",\"TravelDate\":\"2021-05-12T07:35\",\"LocalFromTime\":\"2021-05-12 07:35\",\"FromUTCTime\":\"2021-05-12T07:35\",\"LocalToTime\":\"2021-05-12 15:20\",\"ToUTCTime\":\"2021-05-12T15:20\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":265,\"LAYOVERDuration\":\"4h 25m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Wed, 12 May\",\"ArrivalDateTxt\":\"Wed, 12 May\",\"FlightDuration\":\"7h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":56168.8,\"ApiResultIndex\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17400,\"Tax\":38768.8,\"YQTax\":26076,\"OtherCharges\":6162,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":5308,\"CarrierMiscFee\":752,\"MUFee\":400,\"intPublishedFare\":56168.8,\"PublishedFare\":56168.8,\"OfferedFare\":270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"BUSINESS\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":38768.8,\"BaseFareCal\":55829.82000000001,\"BaseFare\":17400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":26076,\"AGST\":5308,\"MFT\":10.8,\"OT\":6162,\"MU\":400,\"YR\":752,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[[{\"segmentid\":\"371\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-05-12T09:35\",\"SegFlightNumber\":\"EY-223\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-12T07:35\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":265,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:35\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"4h 25m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"402\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-05-12T15:20\",\"SegFlightNumber\":\"EY-5424\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-05-12T14:00\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:00\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],[{\"segmentid\":\"434\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-05-15T06:05\",\"SegFlightNumber\":\"EY-5411\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-05-15T04:45\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":1150,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:45\",\"strArrivalDtTime\":\"06:05\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"19h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"473\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-05-16T06:05\",\"SegFlightNumber\":\"EY-224\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-05-16T01:15\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"01:15\",\"strArrivalDtTime\":\"06:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-3914661257_22DELAUHEY223AUHXNBEY5424XNBAUHEY5411AUHDELEY224_26765582149548096\",\"localFromDateTime\":\"2021-05-12 07:35\",\"localToDateTime\":\"2021-05-12 15:20\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS119300054860\",\"FlightNumber\":\"EY-5411\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:45\",\"ArrivalTime\":\"06:05\",\"TravelDate\":\"2021-05-15T04:45\",\"LocalFromTime\":\"2021-05-15 04:45\",\"FromUTCTime\":\"2021-05-15T04:45\",\"LocalToTime\":\"2021-05-16 06:05\",\"ToUTCTime\":\"2021-05-16T06:05\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":1150,\"LAYOVERDuration\":\"19h 10m\",\"FlyingMinutes\":1430,\"DepartureDateTxt\":\"Sat, 15 May\",\"ArrivalDateTxt\":\"Sun, 16 May\",\"FlightDuration\":\"25h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"434\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-05-15T06:05\",\"SegFlightNumber\":\"EY-5411\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-05-15T04:45\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":1150,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:45\",\"strArrivalDtTime\":\"06:05\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"19h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"473\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-05-16T06:05\",\"SegFlightNumber\":\"EY-224\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"Z\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-05-16T01:15\",\"TripIndicator\":\"\",\"Baggage\":\"40KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"01:15\",\"strArrivalDtTime\":\"06:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-12 12:00\",\"localToDateTime\":\"2021-05-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"XNB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (XNB)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"XNB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"departure_date\":\"12\\/05\\/2021\",\"return_date\":\"15\\/05\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" DXB\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"XNB\",\"from\":\"DEL\",\"to\":\"XNB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/05\\/2021\",\"return_dates\":\"15\\/05\\/2021\",\"strDepatureDate\":\"2021-05-12\",\"strReturnDate\":\"2021-05-15\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28XNB%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=XNB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+DXB%2C+AE+-+Dubai+Chelsea+Tower+Bus+Station+%28XNB%29&departure_date=12%2F05%2F2021&return_date=15%2F05%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+DXB\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1950-02-09\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 15:47:39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"NHJHKJ7689\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-12-25\",\"passporIssue\":\"2019-12-25\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1950-02-09\",\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 15:47:39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"NHJHKJ7689\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-12-25\",\"passporIssue\":\"2019-12-25\",\"CustomerMemberSysId\":\"224\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216114\",\"TPSysId\":\"216115\",\"VersionId\":[\"24891\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7154\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"49\":{\"Currency\":\"INR\",\"key\":\"371\",\"Code\":\"AVML\",\"Price\":\"0\",\"Description\":\"Hindu Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"563\",\"564\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\",\"224\"],\"flight_booking_id\":[\"292\",\"293\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 15:48:44'),(66,'5-1243431189_2DELBOM6E408_26766251811979892,5-1243431189_10BOMDEL6E2036_26766251712383028','{\"BookingData\":[{\"bookingId\":\"TJS104600054862\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-21T06:25\",\"LocalFromTime\":\"2021-03-21 06:25\",\"FromUTCTime\":\"2021-03-21T06:25\",\"LocalToTime\":\"2021-03-21 08:45\",\"ToUTCTime\":\"2021-03-21T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 21 Mar\",\"ArrivalDateTxt\":\"Sun, 21 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":129,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2891.7,\"PublishedFareTxt\":\"2,892\",\"ApiResultIndex\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2202,\"Tax\":689.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":115,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2891.7,\"PublishedFare\":2891.7,\"OfferedFare\":2791.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2806.95,\"BaseFare\":2202,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":2891.7,\"CostToCustomer\":2891.7,\"BaseFareCal\":2806.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":2806.95,\"intOfferedFare\":2791.7,\"intPublishFare\":2891.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":2791.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"657\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-21T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-21T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":129,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"657\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"657\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"657\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"657\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"657\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-21 12:00\",\"localToDateTime\":\"2021-03-23 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104600054862\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"strTraceId\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2021-03-21T06:25\",\"LocalFromTime\":\"2021-03-21 06:25\",\"FromUTCTime\":\"2021-03-21T06:25\",\"LocalToTime\":\"2021-03-21 08:45\",\"ToUTCTime\":\"2021-03-21T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 21 Mar\",\"ArrivalDateTxt\":\"Sun, 21 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":129,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6010.4,\"ApiResultIndex\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4645,\"Tax\":1365.4,\"YQTax\":0,\"OtherCharges\":888,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":242,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":6010.4,\"PublishedFare\":6010.4,\"OfferedFare\":5810.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1365.4,\"BaseFareCal\":5840.9,\"BaseFare\":4645,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":242,\"MFT\":5.4,\"OT\":888,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"657\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-21T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-21T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":129,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":94,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1243431189_2DELBOM6E408_26766251811979892\",\"localFromDateTime\":\"2021-03-21 06:25\",\"localToDateTime\":\"2021-03-21 08:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS104600054862\",\"FlightNumber\":\"6E-2036\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1243431189_10BOMDEL6E2036_26766251712383028\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:45\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-03-23T18:45\",\"LocalFromTime\":\"2021-03-23 18:45\",\"FromUTCTime\":\"2021-03-23T18:45\",\"LocalToTime\":\"2021-03-23 20:55\",\"ToUTCTime\":\"2021-03-23T20:55\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":94,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3118.7,\"PublishedFareTxt\":\"3,119\",\"ApiResultIndex\":\"5-1243431189_10BOMDEL6E2036_26766251712383028\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2443,\"Tax\":675.7,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":127,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3118.7,\"PublishedFare\":3118.7,\"OfferedFare\":3018.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1243431189_10BOMDEL6E2036_26766251712383028\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":675.7,\"BaseFareCal\":3033.95,\"BaseFare\":2443,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":127,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":3118.7,\"CostToCustomer\":3118.7,\"BaseFareCal\":3033.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":3033.95,\"intOfferedFare\":3018.7,\"intPublishFare\":3118.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":3018.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"488\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":94,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"488\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"488\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"488\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"488\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"488\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1243431189_10BOMDEL6E2036_26766251712383028\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-21 12:00\",\"localToDateTime\":\"2021-03-23 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"21\\/03\\/2021\",\"return_date\":\"23\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"21\\/03\\/2021\",\"return_dates\":\"23\\/03\\/2021\",\"strDepatureDate\":\"2021-03-21\",\"strReturnDate\":\"2021-03-23\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=21%2F03%2F2021&return_date=23%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-02-26 16:00:09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"225\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"216126\",\"TPSysId\":\"216127\",\"VersionId\":[\"24892\",\"24893\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7155\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"565\"],[\"566\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"225\",\"CustomerMemSysId\":[\"225\"],\"flight_booking_id\":[\"294\",\"295\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-02-26 16:00:24'),(67,'5-3962957816_26DELBOM6E5379_27274800136356731','{\"BookingData\":[{\"bookingId\":\"TJS105800056233\",\"FlightNumber\":\"6E-5379\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2021-04-27T05:30\",\"LocalFromTime\":\"2021-04-27 05:30\",\"FromUTCTime\":\"2021-04-27T05:30\",\"LocalToTime\":\"2021-04-27 07:40\",\"ToUTCTime\":\"2021-04-27T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 27 Apr\",\"ArrivalDateTxt\":\"Tue, 27 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2898.7,\"PublishedFareTxt\":\"2,899\",\"ApiResultIndex\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2209,\"Tax\":689.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":115,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2898.7,\"PublishedFare\":2898.7,\"OfferedFare\":2798.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2813.95,\"BaseFare\":2209,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":2898.7,\"CostToCustomer\":2898.7,\"BaseFareCal\":2813.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":2813.95,\"intOfferedFare\":2798.7,\"intPublishFare\":2898.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":2798.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"839\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-27T07:40\",\"SegFlightNumber\":\"6E-5379\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-27T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105800056233\",\"FlightNumber\":\"6E-5379\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"strTraceId\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2021-04-27T05:30\",\"LocalFromTime\":\"2021-04-27 05:30\",\"FromUTCTime\":\"2021-04-27T05:30\",\"LocalToTime\":\"2021-04-27 07:40\",\"ToUTCTime\":\"2021-04-27T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 27 Apr\",\"ArrivalDateTxt\":\"Tue, 27 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2898.7,\"ApiResultIndex\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2209,\"Tax\":689.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":115,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":2898.7,\"PublishedFare\":2898.7,\"OfferedFare\":2798.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2813.95,\"BaseFare\":2209,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"839\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-27T07:40\",\"SegFlightNumber\":\"6E-5379\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-27T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3962957816_26DELBOM6E5379_27274800136356731\",\"localFromDateTime\":\"2021-04-27 05:30\",\"localToDateTime\":\"2021-04-27 07:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"27\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-27\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=27%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"217832\",\"TPSysId\":\"217833\",\"VersionId\":[\"25528\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7298\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"570\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"88\",\"CustomerMemSysId\":[\"88\"],\"flight_booking_id\":[\"299\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-04 13:16:51'),(68,'10-4351799974_12DELBOMH19442_27699110326595530','{\"BookingData\":[{\"bookingId\":\"TJS107900057504\",\"FlightNumber\":\"H1-9442\",\"AirlineName\":\"Hahn Air\",\"AirlineCode\":\"H1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"AirlineSysId\":\"251\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-03-18T08:20\",\"LocalFromTime\":\"2021-03-18 08:20\",\"FromUTCTime\":\"2021-03-18T08:20\",\"LocalToTime\":\"2021-03-18 10:25\",\"ToUTCTime\":\"2021-03-18T10:25\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":36015.4,\"PublishedFareTxt\":\"36,015\",\"ApiResultIndex\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21700,\"Tax\":14315.4,\"YQTax\":4692,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1672,\"CarrierMiscFee\":7000,\"MUFee\":200,\"intPublishedFare\":36015.4,\"PublishedFare\":36015.4,\"OfferedFare\":35815.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14315.4,\"BaseFareCal\":35845.91,\"BaseFare\":21700,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4692,\"AGST\":1672,\"MFT\":5.4,\"OT\":716,\"MU\":200,\"YR\":7000,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":30.51,\"PublishFare\":36015.4,\"CostToCustomer\":36015.4,\"BaseFareCal\":35845.91,\"intCommisionEarnedForAgency\":169.49,\"CostToCompany\":35845.91,\"intOfferedFare\":35815.4,\"intPublishFare\":36015.4,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":35815.4,\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"433\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T10:25\",\"SegFlightNumber\":\"H1-9442\",\"AirlineCode\":\"H1\",\"AirlineName\":\"Hahn Air\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107900057504\",\"FlightNumber\":\"H1-9442\",\"AirlineName\":\"Hahn Air\",\"AirlineCode\":\"H1\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"AirlineSysId\":\"251\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2021-03-18T08:20\",\"LocalFromTime\":\"2021-03-18 08:20\",\"FromUTCTime\":\"2021-03-18T08:20\",\"LocalToTime\":\"2021-03-18 10:25\",\"ToUTCTime\":\"2021-03-18T10:25\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":36015.4,\"ApiResultIndex\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21700,\"Tax\":14315.4,\"YQTax\":4692,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1672,\"CarrierMiscFee\":7000,\"MUFee\":200,\"intPublishedFare\":36015.4,\"PublishedFare\":36015.4,\"OfferedFare\":35815.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14315.4,\"BaseFareCal\":35845.91,\"BaseFare\":21700,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4692,\"AGST\":1672,\"MFT\":5.4,\"OT\":716,\"MU\":200,\"YR\":7000,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"433\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T10:25\",\"SegFlightNumber\":\"H1-9442\",\"AirlineCode\":\"H1\",\"AirlineName\":\"Hahn Air\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"1PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/H1.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-4351799974_12DELBOMH19442_27699110326595530\",\"localFromDateTime\":\"2021-03-18 08:20\",\"localToDateTime\":\"2021-03-18 10:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"18\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-18\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=18%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-09 11:07:39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Vivek\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-09 11:07:39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"228\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"218894\",\"TPSysId\":\"218895\",\"VersionId\":[\"25920\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7390\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"62\":{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VJML\",\"Price\":\"0\",\"Description\":\"Jain Veg Meal\"},\"228\":{\"Currency\":\"INR\",\"key\":\"433\",\"Code\":\"VGML\",\"Price\":\"0\",\"Description\":\"Vegan Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"571\",\"572\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"228\"],\"flight_booking_id\":[\"300\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-09 11:08:22'),(69,'5-6998295847_26DELBOM6E5379_27722677486581805','{\"BookingData\":[{\"bookingId\":\"TJS109700057807\",\"FlightNumber\":\"6E-5379\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2021-04-22T05:30\",\"LocalFromTime\":\"2021-04-22 05:30\",\"FromUTCTime\":\"2021-04-22T05:30\",\"LocalToTime\":\"2021-04-22 07:40\",\"ToUTCTime\":\"2021-04-22T07:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 22 Apr\",\"ArrivalDateTxt\":\"Thu, 22 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":69,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":10622.099999999999,\"PublishedFareTxt\":\"10,622\",\"ApiResultIndex\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8460,\"Tax\":2162.1000000000004,\"YQTax\":0,\"OtherCharges\":1371,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":10622.099999999999,\"PublishedFare\":10622.1,\"OfferedFare\":10322.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FLEXI PLUS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":45.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":254.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1441.4,\"BaseFareCal\":6911.91,\"BaseFare\":5640,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":292,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"intTotalGST\":30.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":720.7,\"BaseFareCal\":3455.95,\"BaseFare\":2820,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":146,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":45.76,\"PublishFare\":10622.1,\"CostToCustomer\":10622.1,\"BaseFareCal\":10367.86,\"intCommisionEarnedForAgency\":254.24,\"CostToCompany\":10367.86,\"intOfferedFare\":10322.099999999999,\"intPublishFare\":10622.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":10322.099999999999,\"apiMarkup\":254.23728813559322,\"apiTaxOnMarkup\":45.76271186440678,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"706\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-22T07:40\",\"SegFlightNumber\":\"6E-5379\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-22T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109700057807\",\"FlightNumber\":\"6E-5379\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"strTraceId\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2021-04-22T05:30\",\"LocalFromTime\":\"2021-04-22 05:30\",\"FromUTCTime\":\"2021-04-22T05:30\",\"LocalToTime\":\"2021-04-22 07:40\",\"ToUTCTime\":\"2021-04-22T07:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 22 Apr\",\"ArrivalDateTxt\":\"Thu, 22 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":69,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":10622.099999999999,\"ApiResultIndex\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8460,\"Tax\":2162.1000000000004,\"YQTax\":0,\"OtherCharges\":1371,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":10622.099999999999,\"PublishedFare\":10622.1,\"OfferedFare\":10322.099999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":254.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1441.4,\"BaseFareCal\":6911.91,\"BaseFare\":5640,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":292,\"MFT\":5.4,\"OT\":914,\"MU\":200,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":720.7,\"BaseFareCal\":3455.95,\"BaseFare\":2820,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":146,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"706\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-22T07:40\",\"SegFlightNumber\":\"6E-5379\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-22T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6998295847_26DELBOM6E5379_27722677486581805\",\"localFromDateTime\":\"2021-04-22 05:30\",\"localToDateTime\":\"2021-04-22 07:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"22\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"22\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-22\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=22%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"surbhi\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-09 17:39:03\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"32\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-09 17:39:04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"229\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"49\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9634022688\",\"FirstName\":\"surbhi\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-09 17:39:04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"226\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"219242\",\"TPSysId\":\"219243\",\"VersionId\":[\"26009\"],\"CustomerSysId\":\"94418\",\"TrxId\":\"7412\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"32\":{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPC\",\"Price\":\"6000\",\"Weight\":\"15 Kg\"},\"229\":{\"Currency\":\"INR\",\"key\":\"706\",\"Code\":\"XBPC\",\"Price\":\"6000\",\"Weight\":\"15 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"573\",\"574\",\"575\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"32\",\"CustomerMemSysId\":[\"32\",\"229\",\"226\"],\"flight_booking_id\":[\"301\"]},\"selectedSeatSession\":{\"706\":{\"32\":{\"seatNo\":\"2D\",\"seatPosition\":{\"row\":2,\"column\":5},\"isBooked\":false,\"isAisle\":true,\"code\":\"2D\",\"amount\":200},\"229\":{\"seatNo\":\"4B\",\"seatPosition\":{\"row\":4,\"column\":2},\"isBooked\":false,\"code\":\"4B\",\"amount\":0},\"226\":{\"seatNo\":\"6C\",\"seatPosition\":{\"row\":6,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"6C\",\"amount\":0}}},\"_sessiondata\":null}','2021-03-09 17:39:57'),(70,'5-7650331241_3DELBOM6E2173_27889207689940875','{\"BookingData\":[{\"bookingId\":\"TJS108500058270\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-11T18:20\",\"LocalFromTime\":\"2021-03-11 18:20\",\"FromUTCTime\":\"2021-03-11T18:20\",\"LocalToTime\":\"2021-03-11 20:25\",\"ToUTCTime\":\"2021-03-11T20:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 11 Mar\",\"ArrivalDateTxt\":\"Thu, 11 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":34,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5724.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5639.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":5724.7,\"CostToCustomer\":5724.7,\"BaseFareCal\":5639.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":5639.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":5624.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"137\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-11T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-11T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":34,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-11 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108500058270\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"strTraceId\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-11T18:20\",\"LocalFromTime\":\"2021-03-11 18:20\",\"FromUTCTime\":\"2021-03-11T18:20\",\"LocalToTime\":\"2021-03-11 20:25\",\"ToUTCTime\":\"2021-03-11T20:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 11 Mar\",\"ArrivalDateTxt\":\"Thu, 11 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":34,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"ApiResultIndex\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5724.7,\"OfferedFare\":5624.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5639.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"137\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-11T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-11T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":34,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7650331241_3DELBOM6E2173_27889207689940875\",\"localFromDateTime\":\"2021-03-11 18:20\",\"localToDateTime\":\"2021-03-11 20:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"11\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"11\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-11\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=11%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"mangal@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7727052691\",\"FirstName\":\"Mangal\",\"LastName\":\"katiyar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-11 15:54:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"89\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"18AABCU9603R1ZM\",\"companyname\":\"hellogtx\",\"gstemail\":\"mangal@catpl.co.in\",\"gstphone\":\"9874521258\",\"gstaddress\":\"fgvbfgh\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"219945\",\"TPSysId\":\"219946\",\"VersionId\":[\"26253\"],\"CustomerSysId\":\"105309\",\"TrxId\":\"7463\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"576\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"89\",\"CustomerMemSysId\":[\"89\"],\"flight_booking_id\":[\"302\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-11 15:55:29'),(73,'5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006','{\"BookingData\":[{\"bookingId\":\"TJS109000058273\",\"FlightNumber\":\"6E-5006\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"23:55\",\"TravelDate\":\"2021-04-23T20:00\",\"LocalFromTime\":\"2021-04-23 20:00\",\"FromUTCTime\":\"2021-04-23T20:00\",\"LocalToTime\":\"2021-04-23 23:55\",\"ToUTCTime\":\"2021-04-23T23:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Fri, 23 Apr\",\"ArrivalDateTxt\":\"Fri, 23 Apr\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"PublishedFareTxt\":\"4,317\",\"ApiResultIndex\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4316.7,\"OfferedFare\":4216.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4231.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":4316.7,\"CostToCustomer\":4316.7,\"BaseFareCal\":4231.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":4231.95,\"intOfferedFare\":4216.7,\"intPublishFare\":4316.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4216.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"574\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-04-23T21:35\",\"SegFlightNumber\":\"6E-5006\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-23T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":65,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"119\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-23T23:55\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-04-23T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"574\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109000058273\",\"FlightNumber\":\"6E-5006\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:00\",\"ArrivalTime\":\"23:55\",\"TravelDate\":\"2021-04-23T20:00\",\"LocalFromTime\":\"2021-04-23 20:00\",\"FromUTCTime\":\"2021-04-23T20:00\",\"LocalToTime\":\"2021-04-23 23:55\",\"ToUTCTime\":\"2021-04-23T23:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":235,\"DepartureDateTxt\":\"Fri, 23 Apr\",\"ArrivalDateTxt\":\"Fri, 23 Apr\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"ApiResultIndex\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4316.7,\"OfferedFare\":4216.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4231.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"574\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2021-04-23T21:35\",\"SegFlightNumber\":\"6E-5006\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-23T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":65,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"119\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-23T23:55\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2021-04-23T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9470202634_25DELAMD6E5006AMDBOM6E6813_27889370447381006\",\"localFromDateTime\":\"2021-04-23 20:00\",\"localToDateTime\":\"2021-04-23 23:55\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"23\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-23\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=23%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"mangal@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7727052631\",\"FirstName\":\"mangal\",\"LastName\":\"katiyar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-11 15:57:56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"90\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"219948\",\"TPSysId\":\"219949\",\"VersionId\":[\"26254\"],\"CustomerSysId\":\"105309\",\"TrxId\":\"7465\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"577\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"90\",\"CustomerMemSysId\":[\"90\"],\"flight_booking_id\":[\"303\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-11 15:58:06'),(74,'5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976','{\"BookingData\":[{\"bookingId\":\"TJS108700058482\",\"FlightNumber\":\"6E-138\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:30\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-03-26T10:30\",\"LocalFromTime\":\"2021-03-26 10:30\",\"FromUTCTime\":\"2021-03-26T10:30\",\"LocalToTime\":\"2021-03-26 17:30\",\"ToUTCTime\":\"2021-03-26T17:30\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":420,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"7h 0m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7330.7,\"PublishedFareTxt\":\"7,331\",\"ApiResultIndex\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6477,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":329,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":7330.7,\"PublishedFare\":7330.7,\"OfferedFare\":7230.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":7245.95,\"BaseFare\":6477,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":329,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":7330.7,\"CostToCustomer\":7330.7,\"BaseFareCal\":7245.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":7245.95,\"intOfferedFare\":7230.7,\"intPublishFare\":7330.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":7230.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"060\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T12:35\",\"SegFlightNumber\":\"6E-138\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":225,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:30\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"293\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T17:30\",\"SegFlightNumber\":\"6E-5003\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108700058482\",\"FlightNumber\":\"6E-138\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"strTraceId\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:30\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-03-26T10:30\",\"LocalFromTime\":\"2021-03-26 10:30\",\"FromUTCTime\":\"2021-03-26T10:30\",\"LocalToTime\":\"2021-03-26 17:30\",\"ToUTCTime\":\"2021-03-26T17:30\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":420,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"7h 0m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7330.7,\"ApiResultIndex\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6477,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":329,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":7330.7,\"PublishedFare\":7330.7,\"OfferedFare\":7230.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":7245.95,\"BaseFare\":6477,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":329,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"060\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T12:35\",\"SegFlightNumber\":\"6E-138\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":225,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:30\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"293\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T17:30\",\"SegFlightNumber\":\"6E-5003\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1859445652_0GOPDEL6E138DELLKO6E5003_27977590141046976\",\"localFromDateTime\":\"2021-03-26 10:30\",\"localToDateTime\":\"2021-03-26 17:30\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Gorakhpur (GOP)\",\"mytrip_city_to\":\"Lucknow (LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"GOP\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Gorakhpur, IN - Gorakhpur Arpt (GOP)\",\"destination\":\"Lucknow, IN - Amausi Arpt (LKO)\",\"departure_date\":\"26\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Gorakhpur Arpt (GOP)\",\"to_mytrip_city\":\" IN - Amausi Arpt (LKO)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"GOP\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"GOP\",\"to\":\"LKO\",\"sourceCityText\":\"Gorakhpur, IN - Gorakhpur Arpt (GOP)\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt (LKO)\",\"sourceCityId\":10685,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Gorakhpur+%28GOP%29&mytrip_city_to=Lucknow+%28LKO%29&adults=1&childs=0&infants=0&class=2&source_city=GOP&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Gorakhpur%2C+IN+-+Gorakhpur+Arpt+%28GOP%29&destination=Lucknow%2C+IN+-+Amausi+Arpt+%28LKO%29&departure_date=26%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Gorakhpur+Arpt+%28GOP%29&to_mytrip_city=+IN+-+Amausi+Arpt+%28LKO%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-12 16:27:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"230\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"29AAFCA7488L1ZW\",\"companyname\":\"catpl\",\"gstemail\":\"deepak@catpl.co.in\",\"gstphone\":\"9695357709\",\"gstaddress\":\"Noida\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220277\",\"TPSysId\":\"220278\",\"VersionId\":[\"26390\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7496\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"230\":{\"Currency\":\"INR\",\"key\":\"060\",\"Code\":\"XBPE\",\"Price\":\"1200\",\"Weight\":\"3 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"578\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"230\",\"CustomerMemSysId\":[\"230\"],\"flight_booking_id\":[\"304\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-12 16:29:50');
INSERT INTO `tbl_temp_data` VALUES (75,'5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609','{\"BookingData\":[{\"bookingId\":\"TJS108400058483\",\"FlightNumber\":\"6E-7306\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:55\",\"TravelDate\":\"2021-03-26T10:40\",\"LocalFromTime\":\"2021-03-26 10:40\",\"FromUTCTime\":\"2021-03-26T10:40\",\"LocalToTime\":\"2021-03-26 21:55\",\"ToUTCTime\":\"2021-03-26T21:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":455,\"LAYOVERDuration\":\"7h 35m\",\"FlyingMinutes\":675,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"11h 15m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9927.7,\"PublishedFareTxt\":\"9,928\",\"ApiResultIndex\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8950,\"Tax\":977.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":453,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":9927.7,\"PublishedFare\":9927.7,\"OfferedFare\":9827.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":977.7,\"BaseFareCal\":9842.95,\"BaseFare\":8950,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":453,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":9927.7,\"CostToCustomer\":9927.7,\"BaseFareCal\":9842.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":9842.95,\"intOfferedFare\":9827.7,\"intPublishFare\":9927.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":9827.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":0,\"intGSTOnAgencyFixMarkUp\":0,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"915\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-26T12:30\",\"SegFlightNumber\":\"6E-7306\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":455,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"7h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"364\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T21:55\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-26T20:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:05\",\"strArrivalDtTime\":\"21:55\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108400058483\",\"FlightNumber\":\"6E-7306\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"21:55\",\"TravelDate\":\"2021-03-26T10:40\",\"LocalFromTime\":\"2021-03-26 10:40\",\"FromUTCTime\":\"2021-03-26T10:40\",\"LocalToTime\":\"2021-03-26 21:55\",\"ToUTCTime\":\"2021-03-26T21:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":455,\"LAYOVERDuration\":\"7h 35m\",\"FlyingMinutes\":675,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"11h 15m\",\"SourcePlaceSysId\":\"10685\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"GOP\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9927.7,\"ApiResultIndex\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8950,\"Tax\":977.7,\"YQTax\":0,\"OtherCharges\":407,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":453,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":9927.7,\"PublishedFare\":9927.7,\"OfferedFare\":9827.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":977.7,\"BaseFareCal\":9842.95,\"BaseFare\":8950,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":453,\"MFT\":2.7,\"OT\":407,\"MU\":100,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"915\",\"originAirportName\":\"Gorakhpur Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Gorakhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-26T12:30\",\"SegFlightNumber\":\"6E-7306\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"GOP\",\"originDepTime\":\"2021-03-26T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":455,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"7h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"364\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2021-03-26T21:55\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-26T20:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:05\",\"strArrivalDtTime\":\"21:55\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9829134931_4GOPCCU6E7306CCULKO6E856_27977952666530609\",\"localFromDateTime\":\"2021-03-26 10:40\",\"localToDateTime\":\"2021-03-26 21:55\",\"strSourceAirportCode\":\"GOP\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"10685\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Gorakhpur (GOP)\",\"mytrip_city_to\":\"Lucknow (LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"GOP\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Gorakhpur, IN - Gorakhpur Arpt (GOP)\",\"destination\":\"Lucknow, IN - Amausi Arpt (LKO)\",\"departure_date\":\"26\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Gorakhpur Arpt (GOP)\",\"to_mytrip_city\":\" IN - Amausi Arpt (LKO)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"GOP\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"GOP\",\"to\":\"LKO\",\"sourceCityText\":\"Gorakhpur, IN - Gorakhpur Arpt (GOP)\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt (LKO)\",\"sourceCityId\":10685,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Gorakhpur+%28GOP%29&mytrip_city_to=Lucknow+%28LKO%29&adults=1&childs=0&infants=0&class=2&source_city=GOP&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Gorakhpur%2C+IN+-+Gorakhpur+Arpt+%28GOP%29&destination=Lucknow%2C+IN+-+Amausi+Arpt+%28LKO%29&departure_date=26%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Gorakhpur+Arpt+%28GOP%29&to_mytrip_city=+IN+-+Amausi+Arpt+%28LKO%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"96953657709\",\"FirstName\":\"Deepak\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-12 16:33:37\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"91\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220281\",\"TPSysId\":\"220282\",\"VersionId\":[\"26391\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7497\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"579\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"91\",\"CustomerMemSysId\":[\"91\"],\"flight_booking_id\":[\"305\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-12 16:33:45'),(79,'abfb1-42396-789f8-fea42','{\"FlightBookingData\":[{\"bookingId\":\"DMCS101900058577\",\"bookingId_TJ\":\"TJS101900058577\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"abfb1-42396-789f8-fea42\",\"apiTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-29T08:00\",\"LocalFromTime\":\"2021-03-29 08:00\",\"FromUTCTime\":\"2021-03-29T08:00\",\"LocalToTime\":\"2021-03-29 10:10\",\"ToUTCTime\":\"2021-03-29T10:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 29 Mar\",\"ArrivalDateTxt\":\"Mon, 29 Mar\",\"FlightDuration\":\"02h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":128,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,244\",\"ApiResultIndex\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"PublishedFareAgent\":3243.7,\"OfferedFareAgent\":3243.7,\"OfferedFare\":2966.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"SeatAvailable\":128,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"TotalBaseFare\":3066.7,\"BaseFareCal\":2993.7,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.2542372881356,\"apiMarkup\":84.7457627118644,\"IntCommission\":0,\"apiTaxOnMarkup\":15.254237288135599,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":250,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.2542372881356,\"PublishFare\":3243.7,\"CostToCustomer\":3243.7,\"BaseFareCal\":2993.7,\"intCommisionEarnedForAgency\":250,\"CostToCompany\":2993.7,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":100,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3243.7,\"CostToAgent\":3243.7}},\"Segments\":[{\"segmentid\":\"044\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-29T10:10\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-29T08:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":128,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"044\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-6908606716_10DELBOM6E5012_27986282563721936\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"isML\":false,\"isHB\":false,\"rT\":\"REFUNDABLE\",\"cB\":{\"ADT\":\"15 Kg (01 Piece only)\",\"CNN\":\"15 Kg (01 Piece only)\"},\"hB\":{\"ADT\":\"01 Small Handbag under the seat\",\"CNN\":\"01 Small Handbag under the seat\",\"INF\":\"01 Small Handbag under the seat\"},\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACFT\":175,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":[]},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-28 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"306\"],\"ForCustomerSession\":[{\"AgencySysId\":\"5642\",\"MasterAgencySysId\":\"5293\",\"EmailId\":\"sibo.sarso@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8447455883\",\"FirstName\":\"md\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5642\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-12 18:56:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"93\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"93\",\"CustomerMemSysId\":[\"93\"],\"flight_booking_customer\":[[\"580\"]],\"SearchTraceId\":\"abfb1-42396-789f8-fea42\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_city\":[\"Delhi (DEL)\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"29\\/03\\/2021\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\"],\"destination\":[\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\"],\"from_mytrip_city\":[\" IN - Indira Gandhi Intl Airport (DEL)\"],\"to_mytrip_city\":[\" IN - Mumbai (Bombay) Intl Airport (BOM)\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"strDepatureDate\":[\"2021-03-29\"],\"strReturnDate\":\"\",\"sourceCityId\":[\"7701\"],\"intCountryCode\":\"IN\",\"destinationCityId\":[\"18676\"],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"abfb1-42396-789f8-fea42\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"sourceCityText\":[\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\"],\"destinationCityText\":[\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"29\\/03\\/2021\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"29 Mar Mon\"],\"ReturnDateMobile\":\"\"},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"abfb1-42396-789f8-fea42\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"29\\\\\\/03\\\\\\/2021\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"BOM\\\"],\\\"source\\\":[\\\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\\\"],\\\"destination\\\":[\\\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Indira Gandhi Intl Airport (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Mumbai (Bombay) Intl Airport (BOM)\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"interNationalSearch\\\":false,\\\"strDepatureDate\\\":[\\\"2021-03-29\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[\\\"7701\\\"],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[\\\"18676\\\"],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"abfb1-42396-789f8-fea42\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"29\\\\\\/03\\\\\\/2021\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"29 Mar Mon\\\"],\\\"ReturnDateMobile\\\":\\\"\\\"}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS101900058577\\\",\\\"bookingId_TJ\\\":\\\"TJS101900058577\\\",\\\"FlightNumber\\\":\\\"6E-5012\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"abfb1-42396-789f8-fea42\\\",\\\"apiTraceId\\\":\\\"5-6908606716_10DELBOM6E5012_27986282563721936\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"08:00\\\",\\\"ArrivalTime\\\":\\\"10:10\\\",\\\"TravelDate\\\":\\\"2021-03-29T08:00\\\",\\\"LocalFromTime\\\":\\\"2021-03-29 08:00\\\",\\\"FromUTCTime\\\":\\\"2021-03-29T08:00\\\",\\\"LocalToTime\\\":\\\"2021-03-29 10:10\\\",\\\"ToUTCTime\\\":\\\"2021-03-29T10:10\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"T\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":130,\\\"DepartureDateTxt\\\":\\\"Mon, 29 Mar\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 29 Mar\\\",\\\"FlightDuration\\\":\\\"02h 10m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":128,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,244\\\",\\\"ApiResultIndex\\\":\\\"5-6908606716_10DELBOM6E5012_27986282563721936\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"logo\\\":\\\"http:\\\\\\/\\\\\\/partner.ineedtrip.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2369,\\\"Tax\\\":697.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":457,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":123,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":100,\\\"intPublishedFare\\\":3066.7,\\\"PublishedFare\\\":3243.7,\\\"PublishedFareAgent\\\":3243.7,\\\"OfferedFareAgent\\\":3243.7,\\\"OfferedFare\\\":2966.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-6908606716_10DELBOM6E5012_27986282563721936\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"TACTICAL\\\",\\\"SeatAvailable\\\":128,\\\"classOfBooking\\\":\\\"T\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":42.2542372881356,\\\"apiMarkup\\\":84.7457627118644,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":15.254237288135599,\\\"FixedMarkUp\\\":150,\\\"GSTOnMarkUp\\\":27,\\\"CommEarned\\\":250,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":100,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3243.7,\\\"CostToAgent\\\":3243.7,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":697.7,\\\"TotalBaseFare\\\":3066.7,\\\"BaseFareCal\\\":2993.7,\\\"BaseFare\\\":2369,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":123,\\\"MFT\\\":2.7,\\\"OT\\\":457,\\\"MU\\\":100,\\\"YR\\\":0,\\\"intTotalGST\\\":42.2542372881356,\\\"apiMarkup\\\":84.7457627118644,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":15.254237288135599,\\\"FixedMarkUp\\\":150,\\\"GSTOnMarkUp\\\":27,\\\"CommEarned\\\":250,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":100,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3243.7,\\\"CostToAgent\\\":3243.7,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":84.7457627118644,\\\"apiTaxOnMarkup\\\":15.254237288135599,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":150,\\\"IntTaxOnAgencyFixMarkUp\\\":27,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":42.2542372881356,\\\"PublishFare\\\":3243.7,\\\"CostToCustomer\\\":3243.7,\\\"BaseFareCal\\\":2993.7,\\\"intCommisionEarnedForAgency\\\":250,\\\"CostToCompany\\\":2993.7,\\\"intOfferedFare\\\":2966.7,\\\"intPublishFare\\\":3066.7,\\\"TripjackMarkup\\\":100,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":100,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3243.7,\\\"CostToAgent\\\":3243.7}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"044\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2021-03-29T10:10\\\",\\\"SegFlightNumber\\\":\\\"6E-5012\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"T\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2021-03-29T08:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":130,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":128,\\\"strDepartureDtTime\\\":\\\"08:00\\\",\\\"strArrivalDtTime\\\":\\\"10:10\\\",\\\"FlightDuration\\\":\\\"2h 10m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"http:\\\\\\/\\\\\\/partner.ineedtrip.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1200,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2000,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6000,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":12000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1200,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2000,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6000,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":12000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[],\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-6908606716_10DELBOM6E5012_27986282563721936\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BOM\\\":{\\\"isML\\\":false,\\\"isHB\\\":false,\\\"rT\\\":\\\"REFUNDABLE\\\",\\\"cB\\\":{\\\"ADT\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CNN\\\":\\\"15 Kg (01 Piece only)\\\"},\\\"hB\\\":{\\\"ADT\\\":\\\"01 Small Handbag under the seat\\\",\\\"CNN\\\":\\\"01 Small Handbag under the seat\\\",\\\"INF\\\":\\\"01 Small Handbag under the seat\\\"},\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"ARFT\\\":150,\\\"CRFT\\\":9,\\\"ARF\\\":3000}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"CCF\\\":50,\\\"CCFT\\\":9,\\\"ACFT\\\":175,\\\"ACF\\\":3500}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200},\\\"metaInfo\\\":[]},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2021-03-28 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1200,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2000,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6000,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"044\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":12000,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8447455883\",\"leadEmail\":\"sibo.sarso@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"md\",\"passenger-lastname-1\":\"sabir\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"5642\",\"Salutation\":\"1\",\"EmailId\":\"sibo.sarso@gmail.com\",\"FirstName\":\"md\",\"LastName\":\"sabir\",\"CountryCode\":\"91\",\"MobileNo\":\"8447455883\"},\"_sessiondata\":{\"EmailId\":\"sibo.sarso@gmail.com\",\"UserSysId\":\"6607\",\"CustomerSysId\":\"105487\",\"AgencySysId\":\"5642\",\"MasterAgencySysId\":\"5293\",\"FirstName\":\"md\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Holidayfly Test\",\"AgencyCode\":\"51864\",\"ContactNo1\":\"8447455883\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"9B5F5A37-FA4C-4D30-82A2-C4745D51C768\"},\"_B2BType\":2,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"markup\",\"IsActive\":\"0\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Bookings\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"0\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"paymentMode\":\"2\",\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS101900058577\",\"partnerId\":\"0\",\"amount\":2966.7,\"markup\":100,\"orderType\":\"AIR\",\"deliveryInfo\":{\"emails\":[\"sibo.sarso@gmail.com\"],\"contacts\":[\"918447455883\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2021-03-12T18:58:26.558\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"25720\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5012\",\"eT\":\"321\"},\"stops\":0,\"duration\":130,\"da\":{\"id\":5041,\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\",\"enabled\":true,\"priority\":10},\"aa\":{\"id\":6891,\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\",\"enabled\":true,\"priority\":10},\"dt\":\"2021-03-29T08:00\",\"at\":\"2021-03-29T10:10\",\"iand\":false,\"sN\":0,\"miscInfo\":{\"searchType\":\"ONEWAY\",\"airType\":\"DOMESTIC\"}}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"md\",\"lN\":\"sabir\",\"userProfile\":[],\"id\":1}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":2966.7,\"TAF\":697.7,\"BF\":2369,\"IGST\":2.7,\"TF\":3066.7},\"afC\":{\"TAF\":{\"MF\":15,\"AGST\":123,\"OT\":457,\"MFT\":2.7,\"MU\":100}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200},\"metaInfo\":{\"Users\":{\"311588\":{\"name\":\"Catabatic Technology Pvt Ltd\",\"role\":\"AGENT\",\"userId\":\"311588\",\"partnerId\":\"0\",\"parentUserId\":\"311588\",\"totalBalance\":236430.18}}}}}','2021-03-12 18:58:30'),(80,'10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598','{\"BookingData\":[{\"bookingId\":\"TJS114700058929\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2021-03-18T04:15\",\"LocalFromTime\":\"2021-03-18 04:15\",\"FromUTCTime\":\"2021-03-18T04:15\",\"LocalToTime\":\"2021-03-18 09:30\",\"ToUTCTime\":\"2021-03-18T09:30\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":45,\"LAYOVERDuration\":\"0h 45m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"5h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11055,\"Tax\":20860.2,\"YQTax\":11638,\"OtherCharges\":6184,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1195,\"CarrierMiscFee\":1137,\"MUFee\":600,\"intPublishedFare\":31915.2,\"PublishedFare\":34747.2,\"OfferedFare\":406.20000000000005,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":523.52,\"apiMarkup\":508.48,\"IntCommission\":0,\"apiTaxOnMarkup\":91.52,\"FixedMarkUp\":2400,\"GSTOnMarkUp\":432,\"CommEarned\":2908.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":3725.3999999999996,\"BaseFareCal\":4414.9,\"BaseFare\":715,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":2910,\"AGST\":201,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[{\"segmentid\":\"283\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-18T06:45\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":45,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"929\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-03-18T09:30\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-18T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114700058929\",\"FlightNumber\":\"EY-211\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"04:15\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2021-03-18T04:15\",\"LocalFromTime\":\"2021-03-18 04:15\",\"FromUTCTime\":\"2021-03-18T04:15\",\"LocalToTime\":\"2021-03-18 09:30\",\"ToUTCTime\":\"2021-03-18T09:30\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":45,\"LAYOVERDuration\":\"0h 45m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"5h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"XNB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":34747.2,\"ApiResultIndex\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11055,\"Tax\":20860.2,\"YQTax\":11638,\"OtherCharges\":6184,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1195,\"CarrierMiscFee\":1137,\"MUFee\":600,\"intPublishedFare\":31915.2,\"PublishedFare\":34747.2,\"OfferedFare\":406.20000000000005,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":523.52,\"apiMarkup\":508.48,\"IntCommission\":0,\"apiTaxOnMarkup\":91.52,\"FixedMarkUp\":2400,\"GSTOnMarkUp\":432,\"CommEarned\":2908.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":8567.400000000001,\"BaseFareCal\":13711.900000000001,\"BaseFare\":5170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":4364,\"AGST\":497,\"MFT\":5.4,\"OT\":3092,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":3725.3999999999996,\"BaseFareCal\":4414.9,\"BaseFare\":715,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":2910,\"AGST\":201,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":379,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-18T06:45\",\"SegFlightNumber\":\"EY-211\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T04:15\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":240,\"GroundTime\":45,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:15\",\"strArrivalDtTime\":\"06:45\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":\"0h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"929\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Dubai Chelsea Tower Bus Station\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"XNB\",\"destinationArrTime\":\"2021-03-18T09:30\",\"SegFlightNumber\":\"EY-5418\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-18T07:30\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:30\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],[{\"segmentid\":\"059\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-31T20:20\",\"SegFlightNumber\":\"EY-5423\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-03-31T19:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":105,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:00\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:15\",\"SegFlightNumber\":\"EY-218\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-31T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"03:15\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-2570249333_0DELAUHEY211AUHXNBEY5418XNBAUHEY5423AUHDELEY218_28224477396702598\",\"localFromDateTime\":\"2021-03-18 04:15\",\"localToDateTime\":\"2021-03-18 09:30\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS114700058929\",\"FlightNumber\":\"EY-5423\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"210\",\"DepartureTime\":\"19:00\",\"ArrivalTime\":\"03:15\",\"TravelDate\":\"2021-03-31T19:00\",\"LocalFromTime\":\"2021-03-31 19:00\",\"FromUTCTime\":\"2021-03-31T19:00\",\"LocalToTime\":\"2021-04-01 03:15\",\"ToUTCTime\":\"2021-04-01T03:15\",\"IsDirect\":0,\"FareClass\":\"E\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":105,\"LAYOVERDuration\":\"1h 45m\",\"FlyingMinutes\":405,\"DepartureDateTxt\":\"Wed, 31 Mar\",\"ArrivalDateTxt\":\"Thu, 01 Apr\",\"FlightDuration\":\"8h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"059\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-31T20:20\",\"SegFlightNumber\":\"EY-5423\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-03-31T19:00\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":80,\"GroundTime\":105,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:00\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 45m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"934\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:15\",\"SegFlightNumber\":\"EY-218\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"E\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-31T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"03:15\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"059\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"18\\/03\\/2021\",\"return_date\":\"31\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"18\\/03\\/2021\",\"return_dates\":\"31\\/03\\/2021\",\"strDepatureDate\":\"2021-03-18\",\"strReturnDate\":\"2021-03-31\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=18%2F03%2F2021&return_date=31%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"A1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1946-03-17\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-15 13:07:33\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"hfdfe1234\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-09-22\",\"passporIssue\":\"2018-03-21\",\"CustomerSysId\":\"232\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9695357709\",\"FirstName\":\"C1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2011-03-09\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-15 13:07:33\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"gsdh5285\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-14\",\"passporIssue\":\"2015-03-18\",\"CustomerMemberSysId\":\"233\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9695357709\",\"FirstName\":\"I1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-15 13:07:33\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"ikdt\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-19\",\"passporIssue\":\"2021-03-18\",\"CustomerMemberSysId\":\"234\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"220709\",\"TPSysId\":\"220710\",\"VersionId\":[\"26532\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7540\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"233\":{\"Currency\":\"INR\",\"key\":\"283\",\"Code\":\"VJML\",\"Price\":\"0\",\"Description\":\"Jain Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"581\",\"582\",\"583\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"232\",\"233\",\"234\"],\"flight_booking_id\":[\"307\",\"308\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"deepak@catpl.co.in \",\"CustomerSysId\":\"104941\",\"AgencySysId\":\"5293\",\"FirstName\":\"Deepak \",\"LastName\":\"Kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"9695357709\"}}','2021-03-15 13:17:06'),(82,'4-1671586808_4DELBOMSG7177_28304538052556439','{\"BookingData\":[{\"bookingId\":\"TJS100500059162\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-18T16:40\",\"LocalFromTime\":\"2021-03-18 16:40\",\"FromUTCTime\":\"2021-03-18T16:40\",\"LocalToTime\":\"2021-03-18 20:15\",\"ToUTCTime\":\"2021-03-18T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":3971.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":150,\"intGSTOnAgencyFixMarkUp\":27,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"232\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100500059162\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"strTraceId\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-18T16:40\",\"LocalFromTime\":\"2021-03-18 16:40\",\"FromUTCTime\":\"2021-03-18T16:40\",\"LocalToTime\":\"2021-03-18 20:15\",\"ToUTCTime\":\"2021-03-18T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Thu, 18 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"232\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-18T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1671586808_4DELBOMSG7177_28304538052556439\",\"localFromDateTime\":\"2021-03-18 16:40\",\"localToDateTime\":\"2021-03-18 20:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"18\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-18\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=18%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":null,\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":null,\"CustomerMemberSysIds\":null,\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"deepak@catpl.co.in \",\"CustomerSysId\":\"104941\",\"AgencySysId\":\"5293\",\"FirstName\":\"Deepak \",\"LastName\":\"Kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"9695357709\"}}','2021-03-16 11:17:45'),(83,'5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841','{\"BookingData\":[{\"bookingId\":\"TJS114000059229\",\"FlightNumber\":\"6E-488\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-06T10:25\",\"LocalFromTime\":\"2021-04-06 10:25\",\"FromUTCTime\":\"2021-04-06T10:25\",\"LocalToTime\":\"2021-04-06 20:55\",\"ToUTCTime\":\"2021-04-06T20:55\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":420,\"LAYOVERDuration\":\"7h 0m\",\"FlyingMinutes\":720,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"10h 30m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":56828,\"Tax\":19180.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1504,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":76008.4,\"PublishedFare\":81672.4,\"OfferedFare\":65212.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"841\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-06T12:20\",\"SegFlightNumber\":\"6E-488\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-06T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":420,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"7h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-06T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-06T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"841\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"841\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-06 12:00\",\"localToDateTime\":\"2021-04-09 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114000059229\",\"FlightNumber\":\"6E-488\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-06T10:25\",\"LocalFromTime\":\"2021-04-06 10:25\",\"FromUTCTime\":\"2021-04-06T10:25\",\"LocalToTime\":\"2021-04-06 20:55\",\"ToUTCTime\":\"2021-04-06T20:55\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":420,\"LAYOVERDuration\":\"7h 0m\",\"FlyingMinutes\":720,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"10h 30m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":81672.4,\"ApiResultIndex\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":56828,\"Tax\":19180.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1504,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":76008.4,\"PublishedFare\":81672.4,\"OfferedFare\":65212.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9354.8,\"BaseFareCal\":33017.82,\"BaseFare\":23714,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":752,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"841\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-06T12:20\",\"SegFlightNumber\":\"6E-488\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-06T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":420,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"7h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-06T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-06T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"027\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-10T02:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-04-09T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":195,\"GroundTime\":825,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"02:45\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"377\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-04-10T18:15\",\"SegFlightNumber\":\"6E-904\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-10T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5967863705_20BLRBOM6E488BOMDXB6E61DXBBOM6E62BOMBLR6E904_28318348172169841\",\"localFromDateTime\":\"2021-04-06 10:25\",\"localToDateTime\":\"2021-04-06 20:55\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS114000059229\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:00\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2021-04-09T22:00\",\"LocalFromTime\":\"2021-04-09 22:00\",\"FromUTCTime\":\"2021-04-09T22:00\",\"LocalToTime\":\"2021-04-10 18:15\",\"ToUTCTime\":\"2021-04-10T18:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":825,\"LAYOVERDuration\":\"13h 45m\",\"FlyingMinutes\":1125,\"DepartureDateTxt\":\"Fri, 09 Apr\",\"ArrivalDateTxt\":\"Sat, 10 Apr\",\"FlightDuration\":\"20h 15m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":60,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"027\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-10T02:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-04-09T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":195,\"GroundTime\":825,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"02:45\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"377\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-04-10T18:15\",\"SegFlightNumber\":\"6E-904\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-10T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":60,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"027\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"027\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-06 12:00\",\"localToDateTime\":\"2021-04-09 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"BLR\",\"ContSysId_1\":\"0\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"06\\/04\\/2021\",\"return_date\":\"09\\/04\\/2021\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BLR\",\"to\":\"DXB\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":0,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"06\\/04\\/2021\",\"return_dates\":\"09\\/04\\/2021\",\"strDepatureDate\":\"2021-04-06\",\"strReturnDate\":\"2021-04-09\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=BLR&ContSysId_1=0&destination_city=DXB&ContSysId=228&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=06%2F04%2F2021&return_date=09%2F04%2F2021&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjioplkio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-21\",\"passporIssue\":\"2001-03-08\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Ranu\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-18\",\"passporIssue\":\"2002-03-01\",\"CustomerMemberSysId\":\"235\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Parth\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2014-03-07\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"jhkjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2002-03-15\",\"CustomerMemberSysId\":\"236\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Kritika\",\"LastName\":\"Bhattacharaya\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2013-03-08\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"olkiolki\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-11\",\"passporIssue\":\"2015-03-06\",\"CustomerMemberSysId\":\"237\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Kaira\",\"LastName\":\"Thakur\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"uuiuiuiiui\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-24\",\"passporIssue\":\"2011-03-04\",\"CustomerMemberSysId\":\"238\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"9818999760\",\"FirstName\":\"Dhruv\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-19\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 15:17:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"qwertyuio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2005-03-17\",\"CustomerMemberSysId\":\"239\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221165\",\"TPSysId\":\"221166\",\"VersionId\":[\"26657\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7585\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"585\",\"586\",\"587\",\"588\",\"589\",\"590\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\",\"235\",\"236\",\"237\",\"238\",\"239\"],\"flight_booking_id\":[\"310\",\"311\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-16 15:19:06'),(84,'5-0353392758_11DELBOM6E2077_28328102504599478','{\"BookingData\":[{\"bookingId\":\"TJS107300059280\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-24T22:30\",\"LocalFromTime\":\"2021-03-24 22:30\",\"FromUTCTime\":\"2021-03-24T22:30\",\"LocalToTime\":\"2021-03-25 00:50\",\"ToUTCTime\":\"2021-03-25T00:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":23253.299999999996,\"PublishedFareTxt\":\"23,253\",\"ApiResultIndex\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18714,\"Tax\":4539.300000000001,\"YQTax\":0,\"OtherCharges\":2742,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.300000000000004,\"AirlineGSTComponent\":738,\"CarrierMiscFee\":0,\"MUFee\":900,\"intPublishedFare\":23253.299999999996,\"PublishedFare\":24846.3,\"OfferedFare\":22353.299999999996,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":380.29,\"apiMarkup\":762.71,\"IntCommission\":0,\"apiTaxOnMarkup\":137.29,\"FixedMarkUp\":1350,\"GSTOnMarkUp\":243,\"CommEarned\":2112.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"3\",\"TaxIN\":353.1,\"BaseFareCal\":4679.86,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":8.100000000000001,\"MU\":300,\"YR\":0,\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":762.71,\"apiTaxOnMarkup\":137.29,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1350,\"IntTaxOnAgencyFixMarkUp\":243,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":380.29,\"PublishFare\":24846.3,\"CostToCustomer\":24846.3,\"BaseFareCal\":22733.59,\"intCommisionEarnedForAgency\":2112.71,\"CostToCompany\":22733.59,\"intOfferedFare\":22353.299999999996,\"intPublishFare\":23253.299999999996,\"TripjackMarkup\":900,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":22353.299999999996,\"apiMarkup\":762.7118644067797,\"apiTaxOnMarkup\":137.28813559322032,\"totalAgencyMarkUp\":1350,\"intGSTOnAgencyFixMarkUp\":243,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"930\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"930\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":9,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107300059280\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-24T22:30\",\"LocalFromTime\":\"2021-03-24 22:30\",\"FromUTCTime\":\"2021-03-24T22:30\",\"LocalToTime\":\"2021-03-25 00:50\",\"ToUTCTime\":\"2021-03-25T00:50\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":23253.299999999996,\"ApiResultIndex\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18714,\"Tax\":4539.300000000001,\"YQTax\":0,\"OtherCharges\":2742,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.300000000000004,\"AirlineGSTComponent\":738,\"CarrierMiscFee\":0,\"MUFee\":900,\"intPublishedFare\":23253.299999999996,\"PublishedFare\":24846.3,\"OfferedFare\":22353.299999999996,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":1350,\"GSTOnMarkUp\":243,\"CommEarned\":2112.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2093.1000000000004,\"BaseFareCal\":9026.86,\"BaseFare\":7107,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":369,\"MFT\":8.100000000000001,\"OT\":1371,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"3\",\"TaxIN\":353.1,\"BaseFareCal\":4679.86,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":0,\"MU\":300,\"YR\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"930\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0353392758_11DELBOM6E2077_28328102504599478\",\"localFromDateTime\":\"2021-03-24 22:30\",\"localToDateTime\":\"2021-03-25 00:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":9,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"3\",\"childs\":\"3\",\"infants\":\"3\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"24\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"3\",\"infant\":\"3\",\"departure_dates\":\"24\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-24\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=3&childs=3&infants=3&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=24%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"246\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"baibhav\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"247\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"manish\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"248\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"ahsda\",\"LastName\":\"asad\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"249\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"safdsadf\",\"LastName\":\"sdaD\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"250\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"SAFDASF\",\"LastName\":\"SADFSADFASF\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"251\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"ASDFASF\",\"LastName\":\"AFDSADDFSA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-03-03\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"252\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"ASDASF\",\"LastName\":\"FSADFSA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-03-02\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"253\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":\"other\",\"Contacts\":\"8585960381\",\"FirstName\":\"SASDF\",\"LastName\":\"ADasda\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2021-03-08\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 17:51:10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"254\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221369\",\"TPSysId\":\"221370\",\"VersionId\":[\"26682\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7597\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"591\",\"592\",\"593\",\"594\",\"595\",\"596\",\"597\",\"598\",\"599\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"246\",\"247\",\"248\",\"249\",\"250\",\"251\",\"252\",\"253\",\"254\"],\"flight_booking_id\":[\"312\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-16 17:51:24'),(85,'5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576','{\"BookingData\":[{\"bookingId\":\"TJS118900059288\",\"FlightNumber\":\"6E-262\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2021-05-06T11:45\",\"LocalFromTime\":\"2021-05-06 11:45\",\"FromUTCTime\":\"2021-05-06T11:45\",\"LocalToTime\":\"2021-05-07 04:30\",\"ToUTCTime\":\"2021-05-07T04:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":800,\"LAYOVERDuration\":\"13h 20m\",\"FlyingMinutes\":1095,\"DepartureDateTxt\":\"Thu, 06 May\",\"ArrivalDateTxt\":\"Fri, 07 May\",\"FlightDuration\":\"16h 45m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82752,\"Tax\":19672.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1996,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":102424.40000000001,\"PublishedFare\":108088.4,\"OfferedFare\":97444.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9600.8,\"BaseFareCal\":46225.82,\"BaseFare\":36676,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":998,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9600.8,\"BaseFareCal\":46225.82,\"BaseFare\":36676,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":998,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"892\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-06T12:50\",\"SegFlightNumber\":\"6E-262\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-05-06T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":800,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"12:50\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"13h 20m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"801\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-05-07T04:30\",\"SegFlightNumber\":\"6E-26\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-07T02:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"02:10\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-06 12:00\",\"localToDateTime\":\"2021-05-20 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118900059288\",\"FlightNumber\":\"6E-262\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"strTraceId\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2021-05-06T11:45\",\"LocalFromTime\":\"2021-05-06 11:45\",\"FromUTCTime\":\"2021-05-06T11:45\",\"LocalToTime\":\"2021-05-07 04:30\",\"ToUTCTime\":\"2021-05-07T04:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":800,\"LAYOVERDuration\":\"13h 20m\",\"FlyingMinutes\":1095,\"DepartureDateTxt\":\"Thu, 06 May\",\"ArrivalDateTxt\":\"Fri, 07 May\",\"FlightDuration\":\"16h 45m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":108088.4,\"ApiResultIndex\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82752,\"Tax\":19672.399999999998,\"YQTax\":0,\"OtherCharges\":16264,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1996,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":102424.40000000001,\"PublishedFare\":108088.4,\"OfferedFare\":97444.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9600.8,\"BaseFareCal\":46225.82,\"BaseFare\":36676,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":998,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9600.8,\"BaseFareCal\":46225.82,\"BaseFare\":36676,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":998,\"MFT\":10.8,\"OT\":8132,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"892\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-06T12:50\",\"SegFlightNumber\":\"6E-262\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-05-06T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":800,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"12:50\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"13h 20m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"801\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-05-07T04:30\",\"SegFlightNumber\":\"6E-26\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-07T02:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"02:10\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"500\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-05-21T04:50\",\"SegFlightNumber\":\"6E-66\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-05-20T23:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":370,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":\"6h 10m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"710\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-05-21T12:10\",\"SegFlightNumber\":\"6E-253\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-05-21T11:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:00\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9696437230_0BLRHYD6E262HYDDXB6E26DXBMAA6E66MAABLR6E253_28330569130973576\",\"localFromDateTime\":\"2021-05-06 11:45\",\"localToDateTime\":\"2021-05-07 04:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS118900059288\",\"FlightNumber\":\"6E-66\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:00\",\"ArrivalTime\":\"12:10\",\"TravelDate\":\"2021-05-20T23:00\",\"LocalFromTime\":\"2021-05-20 23:00\",\"FromUTCTime\":\"2021-05-20T23:00\",\"LocalToTime\":\"2021-05-21 12:10\",\"ToUTCTime\":\"2021-05-21T12:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":370,\"LAYOVERDuration\":\"6h 10m\",\"FlyingMinutes\":700,\"DepartureDateTxt\":\"Thu, 20 May\",\"ArrivalDateTxt\":\"Fri, 21 May\",\"FlightDuration\":\"13h 10m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"500\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-05-21T04:50\",\"SegFlightNumber\":\"6E-66\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-05-20T23:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":370,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":\"6h 10m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"710\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-05-21T12:10\",\"SegFlightNumber\":\"6E-253\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-05-21T11:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:00\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"500\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"500\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-06 12:00\",\"localToDateTime\":\"2021-05-20 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"BLR\",\"ContSysId_1\":\"0\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"06\\/05\\/2021\",\"return_date\":\"20\\/05\\/2021\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BLR\",\"to\":\"DXB\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":0,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"06\\/05\\/2021\",\"return_dates\":\"20\\/05\\/2021\",\"strDepatureDate\":\"2021-05-06\",\"strReturnDate\":\"2021-05-20\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=BLR&ContSysId_1=0&destination_city=DXB&ContSysId=228&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=06%2F05%2F2021&return_date=20%2F05%2F2021&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjioplkio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-21\",\"passporIssue\":\"2001-03-08\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Ranu\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-18\",\"passporIssue\":\"2002-03-01\",\"CustomerMemberSysId\":\"235\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Parth\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2014-03-07\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"jhkjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2002-03-15\",\"CustomerMemberSysId\":\"236\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Kritika\",\"LastName\":\"Bhattacharaya\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2013-03-08\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"olkiolki\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-11\",\"passporIssue\":\"2015-03-06\",\"CustomerMemberSysId\":\"237\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Kaira\",\"LastName\":\"Thakur\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"uuiuiuiiui\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-24\",\"passporIssue\":\"2011-03-04\",\"CustomerMemberSysId\":\"238\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Dhruv\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-19\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 18:31:58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"qwertyuio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2005-03-17\",\"CustomerMemberSysId\":\"239\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221412\",\"TPSysId\":\"221413\",\"VersionId\":[\"26696\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7598\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"600\",\"601\",\"602\",\"603\",\"604\",\"605\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\",\"235\",\"236\",\"237\",\"238\",\"239\"],\"flight_booking_id\":[\"313\",\"314\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"sudipta@catpl.co.in \",\"CustomerSysId\":\"103022\",\"AgencySysId\":\"5293\",\"FirstName\":\"Sudipta \",\"LastName\":\"Banerjee \",\"Password_cu\":\"d6c722e0ca771ab08b789d79e6823a8b\",\"ContactNo1\":\"9818999760\"}}','2021-03-16 18:32:23'),(86,'5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999','{\"BookingData\":[{\"bookingId\":\"TJS113200059297\",\"FlightNumber\":\"6E-95\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2021-06-02T07:05\",\"LocalFromTime\":\"2021-06-02 07:05\",\"FromUTCTime\":\"2021-06-02T07:05\",\"LocalToTime\":\"2021-06-02 09:40\",\"ToUTCTime\":\"2021-06-02T09:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Wed, 02 Jun\",\"ArrivalDateTxt\":\"Wed, 02 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82360,\"Tax\":19140.399999999998,\"YQTax\":0,\"OtherCharges\":15864,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1864,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":101500.40000000001,\"PublishedFare\":107164.4,\"OfferedFare\":101044.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"709\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-06-02T09:40\",\"SegFlightNumber\":\"6E-95\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-06-02T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"709\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"709\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-06-02 12:00\",\"localToDateTime\":\"2021-06-11 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS113200059297\",\"FlightNumber\":\"6E-95\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2021-06-02T07:05\",\"LocalFromTime\":\"2021-06-02 07:05\",\"FromUTCTime\":\"2021-06-02T07:05\",\"LocalToTime\":\"2021-06-02 09:40\",\"ToUTCTime\":\"2021-06-02T09:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Wed, 02 Jun\",\"ArrivalDateTxt\":\"Wed, 02 Jun\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":107164.4,\"ApiResultIndex\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82360,\"Tax\":19140.399999999998,\"YQTax\":0,\"OtherCharges\":15864,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1864,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":101500.40000000001,\"PublishedFare\":107164.4,\"OfferedFare\":101044.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":9334.8,\"BaseFareCal\":45763.82,\"BaseFare\":36480,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":932,\"MFT\":10.8,\"OT\":7932,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"709\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-06-02T09:40\",\"SegFlightNumber\":\"6E-95\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-06-02T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"408\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-06-11T23:00\",\"SegFlightNumber\":\"6E-96\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-06-11T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1568331272_0BLRDXB6E95DXBBLR6E96_28335939246536999\",\"localFromDateTime\":\"2021-06-02 07:05\",\"localToDateTime\":\"2021-06-02 09:40\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS113200059297\",\"FlightNumber\":\"6E-96\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2021-06-11T17:20\",\"LocalFromTime\":\"2021-06-11 17:20\",\"FromUTCTime\":\"2021-06-11T17:20\",\"LocalToTime\":\"2021-06-11 23:00\",\"ToUTCTime\":\"2021-06-11T23:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Fri, 11 Jun\",\"ArrivalDateTxt\":\"Fri, 11 Jun\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"408\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-06-11T23:00\",\"SegFlightNumber\":\"6E-96\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-06-11T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"408\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"408\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-06-02 12:00\",\"localToDateTime\":\"2021-06-11 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"BLR\",\"ContSysId_1\":\"0\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"02\\/06\\/2021\",\"return_date\":\"11\\/06\\/2021\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BLR\",\"to\":\"DXB\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":0,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"02\\/06\\/2021\",\"return_dates\":\"11\\/06\\/2021\",\"strDepatureDate\":\"2021-06-02\",\"strReturnDate\":\"2021-06-11\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=BLR&ContSysId_1=0&destination_city=DXB&ContSysId=228&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=02%2F06%2F2021&return_date=11%2F06%2F2021&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjioplkio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-21\",\"passporIssue\":\"2001-03-08\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Ranu\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-18\",\"passporIssue\":\"2002-03-01\",\"CustomerMemberSysId\":\"235\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Parth\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2014-03-07\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"jhkjhjkhkjhkjhkj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2002-03-15\",\"CustomerMemberSysId\":\"236\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Kritika\",\"LastName\":\"Bhattacharaya\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2013-03-08\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"olkiolki\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-11\",\"passporIssue\":\"2015-03-06\",\"CustomerMemberSysId\":\"237\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Kaira\",\"LastName\":\"Thakur\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"uuiuiuiiui\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-24\",\"passporIssue\":\"2011-03-04\",\"CustomerMemberSysId\":\"238\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"29\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Dhruv\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-19\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-16 20:01:44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"qwertyuio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-30\",\"passporIssue\":\"2005-03-17\",\"CustomerMemberSysId\":\"239\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221471\",\"TPSysId\":\"221472\",\"VersionId\":[\"26706\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7622\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"606\",\"607\",\"608\",\"609\",\"610\",\"611\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\",\"235\",\"236\",\"237\",\"238\",\"239\"],\"flight_booking_id\":[\"315\",\"316\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"sudipta@catpl.co.in \",\"CustomerSysId\":\"103022\",\"AgencySysId\":\"5293\",\"FirstName\":\"Sudipta \",\"LastName\":\"Banerjee \",\"Password_cu\":\"d6c722e0ca771ab08b789d79e6823a8b\",\"ContactNo1\":\"9818999760\"}}','2021-03-16 20:02:19'),(87,'4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848','{\"BookingData\":[{\"bookingId\":\"TJS115300059309\",\"FlightNumber\":\"SG-154\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-03-23T10:20\",\"LocalFromTime\":\"2021-03-23 10:20\",\"FromUTCTime\":\"2021-03-23T10:20\",\"LocalToTime\":\"2021-03-23 12:40\",\"ToUTCTime\":\"2021-03-23T12:40\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43992,\"Tax\":15726.399999999998,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1310,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":59718.399999999994,\"PublishedFare\":65382.399999999994,\"OfferedFare\":57336.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":708.8,\"BaseFareCal\":10181.82,\"BaseFare\":9524,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":238,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T12:40\",\"SegFlightNumber\":\"SG-154\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCVS\",\"Price\":308,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCNS\",\"Price\":308,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNML\",\"Price\":420,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFVG\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFNV\",\"Price\":420,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFCM\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"FPML\",\"Price\":420,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DNVL\",\"Price\":420,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DBML\",\"Price\":420,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"CHML\",\"Price\":420,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS115300059309\",\"FlightNumber\":\"SG-154\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2021-03-23T10:20\",\"LocalFromTime\":\"2021-03-23 10:20\",\"FromUTCTime\":\"2021-03-23T10:20\",\"LocalToTime\":\"2021-03-23 12:40\",\"ToUTCTime\":\"2021-03-23T12:40\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":65382.399999999994,\"ApiResultIndex\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43992,\"Tax\":15726.399999999998,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1310,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":59718.399999999994,\"PublishedFare\":65382.399999999994,\"OfferedFare\":57336.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7508.799999999999,\"BaseFareCal\":24691.82,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":708.8,\"BaseFareCal\":10181.82,\"BaseFare\":9524,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":238,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T12:40\",\"SegFlightNumber\":\"SG-154\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"206\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T04:10\",\"SegFlightNumber\":\"SG-137\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"04:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7883450959_1DELDXBSG154DXBDELSG137_28388321851010848\",\"localFromDateTime\":\"2021-03-23 10:20\",\"localToDateTime\":\"2021-03-23 12:40\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS115300059309\",\"FlightNumber\":\"SG-137\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"23:10\",\"ArrivalTime\":\"04:10\",\"TravelDate\":\"2021-03-25T23:10\",\"LocalFromTime\":\"2021-03-25 23:10\",\"FromUTCTime\":\"2021-03-25T23:10\",\"LocalToTime\":\"2021-03-26 04:10\",\"ToUTCTime\":\"2021-03-26T04:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"206\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T04:10\",\"SegFlightNumber\":\"SG-137\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"04:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"LCVS\",\"Price\":293,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"LCNS\",\"Price\":293,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"JNML\",\"Price\":400,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"GFVG\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"GFNV\",\"Price\":400,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"GFCM\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"DNVL\",\"Price\":400,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"DBML\",\"Price\":400,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"CHML\",\"Price\":400,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"206\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"Ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1957-03-20\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"12345678\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-17\",\"passporIssue\":\"2017-03-16\",\"CustomerSysId\":\"259\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"baibhav\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1957-03-20\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"65412378\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-26\",\"passporIssue\":\"2018-03-20\",\"CustomerMemberSysId\":\"260\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"vivek\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2013-03-12\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"axxxibbbb45\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-19\",\"passporIssue\":\"2012-03-22\",\"CustomerMemberSysId\":\"261\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sanjit\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2015-03-24\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"3698745112\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-29\",\"passporIssue\":\"2019-03-30\",\"CustomerMemberSysId\":\"262\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sabir\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sdfasfdasf545487\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-11\",\"passporIssue\":\"2020-04-20\",\"CustomerMemberSysId\":\"263\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asdfasfd\",\"LastName\":\"asfasdf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-18\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 10:42:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sdfsfasdfasf545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2020-03-17\",\"CustomerMemberSysId\":\"264\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221524\",\"TPSysId\":\"221525\",\"VersionId\":[\"26716\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7626\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"612\",\"613\",\"614\",\"615\",\"616\",\"617\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"259\",\"260\",\"261\",\"262\",\"263\",\"264\"],\"flight_booking_id\":[\"317\",\"318\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 10:42:26'),(88,'5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642','{\"BookingData\":[{\"bookingId\":\"TJS114900059312\",\"FlightNumber\":\"6E-23\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:50\",\"ArrivalTime\":\"00:30\",\"TravelDate\":\"2021-03-23T21:50\",\"LocalFromTime\":\"2021-03-23 21:50\",\"FromUTCTime\":\"2021-03-23T21:50\",\"LocalToTime\":\"2021-03-24 00:30\",\"ToUTCTime\":\"2021-03-24T00:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":55812,\"Tax\":15624.399999999998,\"YQTax\":0,\"OtherCharges\":12776,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1436,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":71436.4,\"PublishedFare\":77100.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"434\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T00:30\",\"SegFlightNumber\":\"6E-23\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T21:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"21:50\",\"strArrivalDtTime\":\"00:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"434\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114900059312\",\"FlightNumber\":\"6E-23\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:50\",\"ArrivalTime\":\"00:30\",\"TravelDate\":\"2021-03-23T21:50\",\"LocalFromTime\":\"2021-03-23 21:50\",\"FromUTCTime\":\"2021-03-23T21:50\",\"LocalToTime\":\"2021-03-24 00:30\",\"ToUTCTime\":\"2021-03-24T00:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":250,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":77100.4,\"ApiResultIndex\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":55812,\"Tax\":15624.399999999998,\"YQTax\":0,\"OtherCharges\":12776,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1436,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":71436.4,\"PublishedFare\":77100.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7576.799999999999,\"BaseFareCal\":30731.82,\"BaseFare\":23206,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":718,\"MFT\":10.8,\"OT\":6388,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"434\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T00:30\",\"SegFlightNumber\":\"6E-23\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T21:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"21:50\",\"strArrivalDtTime\":\"00:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"926\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":240,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"4h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2562651926_23DELDXB6E23DXBBOM6E62BOMDEL6E2036_28389805710583642\",\"localFromDateTime\":\"2021-03-23 21:50\",\"localToDateTime\":\"2021-03-24 00:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS114900059312\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-03-25T10:10\",\"LocalFromTime\":\"2021-03-25 10:10\",\"FromUTCTime\":\"2021-03-25T10:10\",\"LocalToTime\":\"2021-03-25 20:55\",\"ToUTCTime\":\"2021-03-25T20:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":240,\"LAYOVERDuration\":\"4h 0m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"10h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"926\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":240,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"4h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"193\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"926\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"926\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"Ganesh\",\"LastName\":\"Ctapl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1953-03-25\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"789654123\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-26\",\"passporIssue\":\"2014-03-18\",\"CustomerSysId\":\"292\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"deepk\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1953-03-25\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SDADAD4654DF\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-28\",\"passporIssue\":\"2014-03-18\",\"CustomerMemberSysId\":\"293\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"DFGDSG\",\"LastName\":\"SDFFGDFD\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-21\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DSFGDSG797\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-31\",\"passporIssue\":\"2019-03-19\",\"CustomerMemberSysId\":\"294\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SANNY\",\"LastName\":\"CATPL\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-21\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DDASFASF975\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-24\",\"passporIssue\":\"2019-03-19\",\"CustomerMemberSysId\":\"295\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"VIVEK\",\"LastName\":\"CATPL\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-25\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SAFDSSADF9897SD\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-05\",\"passporIssue\":\"2021-01-12\",\"CustomerMemberSysId\":\"296\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"AFDSF\",\"LastName\":\"SADFSA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-17\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:02:42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SADFSAF454\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2029-03-21\",\"passporIssue\":\"2020-03-19\",\"CustomerMemberSysId\":\"297\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221529\",\"TPSysId\":\"221530\",\"VersionId\":[\"26719\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7628\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"618\",\"619\",\"620\",\"621\",\"622\",\"623\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"292\",\"293\",\"294\",\"295\",\"296\",\"297\"],\"flight_booking_id\":[\"319\",\"320\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 11:03:31'),(89,'5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676','{\"BookingData\":[{\"bookingId\":\"TJS116500059317\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T22:30\",\"LocalFromTime\":\"2021-03-23 22:30\",\"FromUTCTime\":\"2021-03-23T22:30\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1415,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"22h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":1055,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"17h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS116500059317\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T22:30\",\"LocalFromTime\":\"2021-03-23 22:30\",\"FromUTCTime\":\"2021-03-23T22:30\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1415,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"22h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":89716.4,\"ApiResultIndex\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"161\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":1055,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"17h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"647\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"728\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":315,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"5h 15m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"046\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:05\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9732533266_91DELBOM6E2077BOMDXB6E61DXBBOM6E62BOMDEL6E2059_28391405646001676\",\"localFromDateTime\":\"2021-03-23 22:30\",\"localToDateTime\":\"2021-03-24 20:35\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS116500059317\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2021-03-25T10:10\",\"LocalFromTime\":\"2021-03-25 10:10\",\"FromUTCTime\":\"2021-03-25T10:10\",\"LocalToTime\":\"2021-03-25 22:05\",\"ToUTCTime\":\"2021-03-25T22:05\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":315,\"LAYOVERDuration\":\"5h 15m\",\"FlyingMinutes\":625,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"11h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"728\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":315,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"5h 15m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"046\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:05\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"728\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"728\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"Ganesh\",\"LastName\":\"Catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1949-03-02\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"45997987fdf\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-28\",\"passporIssue\":\"2017-03-21\",\"CustomerSysId\":\"300\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"vivek\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1949-03-02\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfsf5445\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-19\",\"passporIssue\":\"2015-03-18\",\"CustomerMemberSysId\":\"301\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"DSFGSD\",\"LastName\":\"DFGDS\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-14\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DSFGDS4564\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-23\",\"passporIssue\":\"2019-03-19\",\"CustomerMemberSysId\":\"302\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"DSFGDSG\",\"LastName\":\"DFGDSG\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2017-03-28\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SAFASFFS879\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-08\",\"passporIssue\":\"2018-03-21\",\"CustomerMemberSysId\":\"303\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SAFASFD\",\"LastName\":\"SFDASF\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-18\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"FASFD7987\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-24\",\"passporIssue\":\"2020-03-26\",\"CustomerMemberSysId\":\"304\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SADFASFERT\",\"LastName\":\"WERTBNB\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:27:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SADFASF455\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2020-03-18\",\"CustomerMemberSysId\":\"305\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221539\",\"TPSysId\":\"221540\",\"VersionId\":[\"26721\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7630\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"624\",\"625\",\"626\",\"627\",\"628\",\"629\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"300\",\"301\",\"302\",\"303\",\"304\",\"305\"],\"flight_booking_id\":[\"321\",\"322\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 11:28:10'),(90,'5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800','{\"BookingData\":[{\"bookingId\":\"TJS111000059319\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T18:20\",\"LocalFromTime\":\"2021-03-23 18:20\",\"FromUTCTime\":\"2021-03-23T18:20\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1320,\"LAYOVERDuration\":\"22h 0m\",\"FlyingMinutes\":1665,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"26h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"752\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":1320,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"22h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"455\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"752\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"752\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS111000059319\",\"FlightNumber\":\"6E-2173\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2021-03-23T18:20\",\"LocalFromTime\":\"2021-03-23 18:20\",\"FromUTCTime\":\"2021-03-23T18:20\",\"LocalToTime\":\"2021-03-24 20:35\",\"ToUTCTime\":\"2021-03-24T20:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1320,\"LAYOVERDuration\":\"22h 0m\",\"FlyingMinutes\":1665,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"26h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":89716.4,\"ApiResultIndex\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"752\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"6E-2173\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":1320,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"22h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"455\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-24T20:35\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-24T18:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"18:25\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"544\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":480,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"8h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"088\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T01:10\",\"SegFlightNumber\":\"6E-2191\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8950520993_32DELBOM6E2173BOMDXB6E61DXBBOM6E62BOMDEL6E2191_28392750415036800\",\"localFromDateTime\":\"2021-03-23 18:20\",\"localToDateTime\":\"2021-03-24 20:35\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS111000059319\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"01:10\",\"TravelDate\":\"2021-03-25T10:10\",\"LocalFromTime\":\"2021-03-25 10:10\",\"FromUTCTime\":\"2021-03-25T10:10\",\"LocalToTime\":\"2021-03-26 01:10\",\"ToUTCTime\":\"2021-03-26T01:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":480,\"LAYOVERDuration\":\"8h 0m\",\"FlyingMinutes\":810,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"15h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":29,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"544\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":480,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"8h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"088\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T01:10\",\"SegFlightNumber\":\"6E-2191\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":29,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"544\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"GANESH\",\"LastName\":\"CATPL\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1961-03-16\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"AFSAFDSF\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-22\",\"passporIssue\":\"2017-03-25\",\"CustomerSysId\":\"310\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SAFSAFDA\",\"LastName\":\"SDFSAF\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1961-03-16\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SDFSAFS\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-24\",\"passporIssue\":\"2018-03-22\",\"CustomerMemberSysId\":\"311\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ASDFAS\",\"LastName\":\"SDFSFGG\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2017-03-22\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"78964521\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-27\",\"passporIssue\":\"2018-03-21\",\"CustomerMemberSysId\":\"312\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"Deepak\",\"LastName\":\"Catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-20\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sdfsadf545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-25\",\"passporIssue\":\"2017-03-29\",\"CustomerMemberSysId\":\"313\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asfsafd\",\"LastName\":\"sdfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-17\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfsadf5465\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-12\",\"passporIssue\":\"2020-05-18\",\"CustomerMemberSysId\":\"314\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"GANESH@CATPL.CO.IN\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sdfasfsdc\",\"LastName\":\"asdfasfsf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-24\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 11:50:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"dfgdsg455df\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-22\",\"passporIssue\":\"2020-04-21\",\"CustomerMemberSysId\":\"315\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221556\",\"TPSysId\":\"221557\",\"VersionId\":[\"26732\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7632\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"630\",\"631\",\"632\",\"633\",\"634\",\"635\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"310\",\"311\",\"312\",\"313\",\"314\",\"315\"],\"flight_booking_id\":[\"323\",\"324\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 11:51:07'),(91,'5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803','{\"BookingData\":[{\"bookingId\":\"TJS114400059320\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T10:15\",\"LocalFromTime\":\"2021-03-23 10:15\",\"FromUTCTime\":\"2021-03-23T10:15\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"7h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"272\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T12:15\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":205,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:15\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"344\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"272\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"272\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114400059320\",\"FlightNumber\":\"6E-5339\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"strTraceId\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T10:15\",\"LocalFromTime\":\"2021-03-23 10:15\",\"FromUTCTime\":\"2021-03-23T10:15\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":545,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"7h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":89716.4,\"ApiResultIndex\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":67628,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":84052.4,\"PublishedFare\":89716.4,\"OfferedFare\":65532.399999999994,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":37039.82,\"BaseFare\":29114,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"272\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T12:15\",\"SegFlightNumber\":\"6E-5339\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":205,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:15\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"344\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"347\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":240,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"4h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"634\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8110098746_77DELBOM6E5339BOMDXB6E61DXBBOM6E62BOMDEL6E2036_28393455466040803\",\"localFromDateTime\":\"2021-03-23 10:15\",\"localToDateTime\":\"2021-03-23 17:50\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS114400059320\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-03-25T10:10\",\"LocalFromTime\":\"2021-03-25 10:10\",\"FromUTCTime\":\"2021-03-25T10:10\",\"LocalToTime\":\"2021-03-25 20:55\",\"ToUTCTime\":\"2021-03-25T20:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":240,\"LAYOVERDuration\":\"4h 0m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"10h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":37,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"347\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-25T14:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":240,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"4h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"634\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:55\",\"SegFlightNumber\":\"6E-2036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":37,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"347\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"347\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"vivek\",\"LastName\":\"catl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1957-03-22\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"safsf456487sdf\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2025-03-05\",\"passporIssue\":\"2018-03-16\",\"CustomerSysId\":\"319\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asfsaf\",\"LastName\":\"safsafs\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1957-03-22\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfsafs\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-06\",\"passporIssue\":\"2017-03-09\",\"CustomerMemberSysId\":\"320\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"asfdasfdsa\",\"LastName\":\"safsafs\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2019-03-13\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"safdsaf5456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2021-03-31\",\"passporIssue\":\"2021-03-23\",\"CustomerMemberSysId\":\"321\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"afsafdsf\",\"LastName\":\"sfdsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2019-03-07\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"fss4sfsdfsfs\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-31\",\"passporIssue\":\"2008-03-14\",\"CustomerMemberSysId\":\"322\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"dsfgfsdfg\",\"LastName\":\"dfgdsgfd\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-19\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"dsfgsdfgd54\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-29\",\"passporIssue\":\"2020-03-25\",\"CustomerMemberSysId\":\"323\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"dsfgsdg\",\"LastName\":\"dsfgsdfg\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-18\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:06:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"asfasf54\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-28\",\"passporIssue\":\"2020-04-16\",\"CustomerMemberSysId\":\"324\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221569\",\"TPSysId\":\"221570\",\"VersionId\":[\"26740\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7634\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"636\",\"637\",\"638\",\"639\",\"640\",\"641\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"319\",\"320\",\"321\",\"322\",\"323\",\"324\"],\"flight_booking_id\":[\"325\",\"326\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 12:06:21'),(92,'5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257','{\"BookingData\":[{\"bookingId\":\"TJS115800059322\",\"FlightNumber\":\"6E-2113\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T08:35\",\"LocalFromTime\":\"2021-03-23 08:35\",\"FromUTCTime\":\"2021-03-23T08:35\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":295,\"LAYOVERDuration\":\"4h 55m\",\"FlyingMinutes\":645,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"9h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":81984,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":98408.40000000001,\"PublishedFare\":104072.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"160\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T10:45\",\"SegFlightNumber\":\"6E-2113\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":295,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"4h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"452\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS115800059322\",\"FlightNumber\":\"6E-2113\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"strTraceId\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T08:35\",\"LocalFromTime\":\"2021-03-23 08:35\",\"FromUTCTime\":\"2021-03-23T08:35\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":295,\"LAYOVERDuration\":\"4h 55m\",\"FlyingMinutes\":645,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"9h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":104072.4,\"ApiResultIndex\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":81984,\"Tax\":16424.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":2036,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":98408.40000000001,\"PublishedFare\":104072.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"160\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T10:45\",\"SegFlightNumber\":\"6E-2113\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":295,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"10:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"4h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"452\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"617\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-03-25T09:40\",\"SegFlightNumber\":\"6E-25\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":225,\"GroundTime\":520,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"283\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:30\",\"SegFlightNumber\":\"6E-5162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-03-25T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8224992463_27DELBOM6E2113BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394188635065257\",\"localFromDateTime\":\"2021-03-23 08:35\",\"localToDateTime\":\"2021-03-23 17:50\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS115800059322\",\"FlightNumber\":\"6E-25\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:25\",\"ArrivalTime\":\"20:30\",\"TravelDate\":\"2021-03-25T04:25\",\"LocalFromTime\":\"2021-03-25 04:25\",\"FromUTCTime\":\"2021-03-25T04:25\",\"LocalToTime\":\"2021-03-25 20:30\",\"ToUTCTime\":\"2021-03-25T20:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":875,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"16h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":40,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"617\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-03-25T09:40\",\"SegFlightNumber\":\"6E-25\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":225,\"GroundTime\":520,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"283\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:30\",\"SegFlightNumber\":\"6E-5162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-03-25T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"617\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1956-03-22\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfsa789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-16\",\"passporIssue\":\"2015-03-12\",\"CustomerSysId\":\"94\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"94\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"sadfas\",\"LastName\":\"sdfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1956-03-22\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"asdfasfs\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-20\",\"passporIssue\":\"2006-03-22\",\"CustomerMemberSysId\":\"325\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"94\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"sdfsa\",\"LastName\":\"sadfsa\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-21\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfasfa\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-19\",\"passporIssue\":\"2012-03-29\",\"CustomerMemberSysId\":\"326\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"94\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"sadfsaf\",\"LastName\":\"sdfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2015-03-04\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfsadf465\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-25\",\"passporIssue\":\"2017-03-22\",\"CustomerMemberSysId\":\"327\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"94\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"sadfasf\",\"LastName\":\"sadfsaf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-18\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfasf\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-11\",\"passporIssue\":\"2015-03-25\",\"CustomerMemberSysId\":\"328\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"94\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"85859603841\",\"FirstName\":\"asdfasf\",\"LastName\":\"sadfasf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:14:20\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"dsfgdg456dfg\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2028-03-22\",\"passporIssue\":\"2020-03-18\",\"CustomerMemberSysId\":\"329\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221583\",\"TPSysId\":\"221584\",\"VersionId\":[\"26741\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7637\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"642\",\"643\",\"644\",\"645\",\"646\",\"647\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"94\",\"CustomerMemSysId\":[\"94\",\"325\",\"326\",\"327\",\"328\",\"329\"],\"flight_booking_id\":[\"327\",\"328\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 12:14:33'),(93,'5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290','{\"BookingData\":[{\"bookingId\":\"TJS110200059323\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T06:25\",\"LocalFromTime\":\"2021-03-23 06:25\",\"FromUTCTime\":\"2021-03-23T06:25\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":775,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"11h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":79968,\"Tax\":16324.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1936,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":96292.40000000001,\"PublishedFare\":101956.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":96292.4,\"oldFare\":100324.4,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7876.799999999999,\"BaseFareCal\":42101.82,\"BaseFare\":34276,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":918,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[{\"segmentid\":\"255\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":415,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"628\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"255\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"255\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS110200059323\",\"FlightNumber\":\"6E-408\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:25\",\"ArrivalTime\":\"17:50\",\"TravelDate\":\"2021-03-23T06:25\",\"LocalFromTime\":\"2021-03-23 06:25\",\"FromUTCTime\":\"2021-03-23T06:25\",\"LocalToTime\":\"2021-03-23 17:50\",\"ToUTCTime\":\"2021-03-23T17:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":775,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"11h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":101956.4,\"ApiResultIndex\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":79968,\"Tax\":16324.399999999998,\"YQTax\":0,\"OtherCharges\":12976,\"Discount\":0,\"ServiceFee\":180,\"ManagementFeeTax\":32.400000000000006,\"AirlineGSTComponent\":1936,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":96292.40000000001,\"PublishedFare\":101956.4,\"OfferedFare\":94244.40000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":1047.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":4800,\"GSTOnMarkUp\":864,\"CommEarned\":5816.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":96292.4,\"oldFare\":100324.4,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7976.799999999999,\"BaseFareCal\":44217.82,\"BaseFare\":36292,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":1018,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7876.799999999999,\"BaseFareCal\":42101.82,\"BaseFare\":34276,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":918,\"MFT\":10.8,\"OT\":6488,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"2\",\"TaxIN\":470.8,\"BaseFareCal\":9819.82,\"BaseFare\":9400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":10.8,\"MU\":400,\"YR\":0,\"intTotalGST\":349.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":1600,\"GSTOnMarkUp\":288,\"CommEarned\":1938.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}]},\"Segments\":[[{\"segmentid\":\"255\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T08:45\",\"SegFlightNumber\":\"6E-408\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T06:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":415,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"06:25\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"628\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-23T17:50\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T15:40\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"17:50\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"126\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-03-25T09:40\",\"SegFlightNumber\":\"6E-25\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":225,\"GroundTime\":520,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"817\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:30\",\"SegFlightNumber\":\"6E-5162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-03-25T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7327685909_35DELBOM6E408BOMDXB6E61DXBHYD6E25HYDDEL6E5162_28394823241297290\",\"localFromDateTime\":\"2021-03-23 06:25\",\"localToDateTime\":\"2021-03-23 17:50\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS110200059323\",\"FlightNumber\":\"6E-25\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:25\",\"ArrivalTime\":\"20:30\",\"TravelDate\":\"2021-03-25T04:25\",\"LocalFromTime\":\"2021-03-25 04:25\",\"FromUTCTime\":\"2021-03-25T04:25\",\"LocalToTime\":\"2021-03-25 20:30\",\"ToUTCTime\":\"2021-03-25T20:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":520,\"LAYOVERDuration\":\"8h 40m\",\"FlyingMinutes\":875,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"16h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":40,\"TotalFlightMembers\":6,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"126\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-03-25T09:40\",\"SegFlightNumber\":\"6E-25\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-25T04:25\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":225,\"GroundTime\":520,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"04:25\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 45m\",\"LAYOVERDuration\":\"8h 40m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"817\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T20:30\",\"SegFlightNumber\":\"6E-5162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-03-25T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":40,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"126\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"126\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":6,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"2\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"2\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=2&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=23%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"sfdsaf\",\"LastName\":\"sdfsdf\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1946-03-24\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"sadfasdfsa\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-24\",\"passporIssue\":\"2010-03-18\",\"CustomerSysId\":\"330\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1954-02-17\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"12345\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-02-15\",\"passporIssue\":\"2021-02-22\",\"CustomerMemberSysId\":\"227\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SANNY\",\"LastName\":\"CATPL\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2018-03-21\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"DDASFASF975\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2026-03-24\",\"passporIssue\":\"2019-03-19\",\"CustomerMemberSysId\":\"295\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"shivam\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2016-03-22\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"aDSasdadds554\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2030-03-26\",\"passporIssue\":\"2017-03-21\",\"CustomerMemberSysId\":\"285\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SADFASFERT\",\"LastName\":\"WERTBNB\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"SADFASF455\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2020-03-18\",\"CustomerMemberSysId\":\"305\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"SAFASFD\",\"LastName\":\"SFDASF\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-18\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 12:23:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"FASFD7987\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-24\",\"passporIssue\":\"2020-03-26\",\"CustomerMemberSysId\":\"304\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221592\",\"TPSysId\":\"221593\",\"VersionId\":[\"26742\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7639\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"648\",\"649\",\"650\",\"651\",\"652\",\"653\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"330\",\"227\",\"295\",\"285\",\"305\",\"304\"],\"flight_booking_id\":[\"329\",\"330\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 12:23:20'),(94,'5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315','{\"BookingData\":[{\"bookingId\":\"TJS116200059371\",\"FlightNumber\":\"6E-456\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:35\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-05T04:35\",\"LocalFromTime\":\"2021-04-05 04:35\",\"FromUTCTime\":\"2021-04-05T04:35\",\"LocalToTime\":\"2021-04-05 20:55\",\"ToUTCTime\":\"2021-04-05T20:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":780,\"LAYOVERDuration\":\"13h 0m\",\"FlyingMinutes\":1070,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"16h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":21,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14693,\"Tax\":4677.4,\"YQTax\":0,\"OtherCharges\":4066,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":376,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":19370.4,\"PublishedFare\":20314.4,\"OfferedFare\":19557.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4677.4,\"BaseFareCal\":19344.9,\"BaseFare\":14693,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":376,\"MFT\":5.4,\"OT\":4066,\"MU\":200,\"YR\":0,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"562\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-05T06:20\",\"SegFlightNumber\":\"6E-456\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-05T04:35\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":780,\"NoOfSeatAvailable\":21,\"strDepartureDtTime\":\"04:35\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"13h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"930\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-05T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-05T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":21,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"562\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"562\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-05 12:00\",\"localToDateTime\":\"2021-04-05 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS116200059371\",\"FlightNumber\":\"6E-456\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"strTraceId\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:35\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2021-04-05T04:35\",\"LocalFromTime\":\"2021-04-05 04:35\",\"FromUTCTime\":\"2021-04-05T04:35\",\"LocalToTime\":\"2021-04-05 20:55\",\"ToUTCTime\":\"2021-04-05T20:55\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":780,\"LAYOVERDuration\":\"13h 0m\",\"FlyingMinutes\":1070,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"16h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":21,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":20314.4,\"ApiResultIndex\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14693,\"Tax\":4677.4,\"YQTax\":0,\"OtherCharges\":4066,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":376,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":19370.4,\"PublishedFare\":20314.4,\"OfferedFare\":19557.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4677.4,\"BaseFareCal\":19344.9,\"BaseFare\":14693,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":376,\"MFT\":5.4,\"OT\":4066,\"MU\":200,\"YR\":0,\"intTotalGST\":174.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":800,\"GSTOnMarkUp\":144,\"CommEarned\":969.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[[{\"segmentid\":\"562\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-05T06:20\",\"SegFlightNumber\":\"6E-456\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-04-05T04:35\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":780,\"NoOfSeatAvailable\":21,\"strDepartureDtTime\":\"04:35\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":\"13h 0m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"930\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-04-05T20:55\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-05T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":21,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"137\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-06T04:20\",\"SegFlightNumber\":\"6E-24\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-04-05T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":865,\"NoOfSeatAvailable\":12,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"04:20\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":\"14h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"209\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-04-06T21:40\",\"SegFlightNumber\":\"6E-2637\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-06T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":12,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4107912136_0BLRBOM6E456BOMDXB6E61DXBDEL6E24DELBLR6E2637_28407741605871315\",\"localFromDateTime\":\"2021-04-05 04:35\",\"localToDateTime\":\"2021-04-05 20:55\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS116200059371\",\"FlightNumber\":\"6E-24\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:10\",\"ArrivalTime\":\"21:40\",\"TravelDate\":\"2021-04-05T23:10\",\"LocalFromTime\":\"2021-04-05 23:10\",\"FromUTCTime\":\"2021-04-05T23:10\",\"LocalToTime\":\"2021-04-06 21:40\",\"ToUTCTime\":\"2021-04-06T21:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":865,\"LAYOVERDuration\":\"14h 25m\",\"FlyingMinutes\":1260,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"22h 30m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":12,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"137\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-06T04:20\",\"SegFlightNumber\":\"6E-24\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-04-05T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":865,\"NoOfSeatAvailable\":12,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"04:20\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":\"14h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"209\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-04-06T21:40\",\"SegFlightNumber\":\"6E-2637\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-06T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":12,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"21:40\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"137\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-05 12:00\",\"localToDateTime\":\"2021-04-05 12:00\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"0\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BLR\",\"ContSysId_1\":\"0\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"05\\/04\\/2021\",\"return_date\":\"05\\/04\\/2021\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"BLR\",\"to\":\"DXB\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":0,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/04\\/2021\",\"return_dates\":\"05\\/04\\/2021\",\"strDepatureDate\":\"2021-04-05\",\"strReturnDate\":\"2021-04-05\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=0&class=2&source_city=BLR&ContSysId_1=0&destination_city=DXB&ContSysId=228&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=05%2F04%2F2021&return_date=05%2F04%2F2021&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1960-03-10\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 15:56:24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kjioplkio\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-21\",\"passporIssue\":\"2001-03-08\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221786\",\"TPSysId\":\"221787\",\"VersionId\":[\"26813\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7651\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"656\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"333\",\"334\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 15:56:41'),(95,'5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294','{\"BookingData\":[{\"bookingId\":\"TJS104000059411\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-04-05T09:45\",\"LocalFromTime\":\"2021-04-05 09:45\",\"FromUTCTime\":\"2021-04-05T09:45\",\"LocalToTime\":\"2021-04-05 15:40\",\"ToUTCTime\":\"2021-04-05T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":70,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"PublishedFareTxt\":\"4,317\",\"ApiResultIndex\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4493.7,\"CostToCustomer\":4493.7,\"BaseFareCal\":4258.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4258.95,\"intOfferedFare\":4216.7,\"intPublishFare\":4316.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"dddddd\":{\"intOfferedFare\":4216.7,\"apiMarkup\":84.7457627118644,\"apiTaxOnMarkup\":15.254237288135599,\"totalAgencyMarkUp\":150,\"intGSTOnAgencyFixMarkUp\":27,\"AdminComminAmount\":0}}},\"Segments\":[{\"segmentid\":\"968\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-04-05T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-05T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":70,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"327\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-05T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-04-05T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":70,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"968\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"968\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"968\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"968\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"968\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104000059411\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"strTraceId\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-04-05T09:45\",\"LocalFromTime\":\"2021-04-05 09:45\",\"FromUTCTime\":\"2021-04-05T09:45\",\"LocalToTime\":\"2021-04-05 15:40\",\"ToUTCTime\":\"2021-04-05T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":70,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"ApiResultIndex\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"968\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-04-05T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-05T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":70,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"327\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-05T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-04-05T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":70,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8185291467_10DELHYD6E816HYDBOM6E903_28413791214034294\",\"localFromDateTime\":\"2021-04-05 09:45\",\"localToDateTime\":\"2021-04-05 15:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"05\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-05\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=05%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 17:37:18\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221878\",\"TPSysId\":\"221879\",\"VersionId\":[\"26843\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7658\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"657\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"335\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 17:37:29'),(96,'4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851','{\"BookingData\":[{\"bookingId\":\"TJS114900059456\",\"FlightNumber\":\"SG-131\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:50\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-25T07:50\",\"LocalFromTime\":\"2021-03-25 07:50\",\"FromUTCTime\":\"2021-03-25T07:50\",\"LocalToTime\":\"2021-03-25 10:10\",\"ToUTCTime\":\"2021-03-25T10:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13379,\"Tax\":4108.799999999999,\"YQTax\":0,\"OtherCharges\":3251,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":387,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17487.8,\"PublishedFare\":17487.8,\"OfferedFare\":16782.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3754.3999999999996,\"BaseFareCal\":12201.9,\"BaseFare\":8617,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":268,\"MFT\":5.4,\"OT\":3251,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":354.4,\"BaseFareCal\":4946.9,\"BaseFare\":4762,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":119,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T10:10\",\"SegFlightNumber\":\"SG-131\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-25T07:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:50\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCVS\",\"Price\":308,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCNS\",\"Price\":308,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNML\",\"Price\":420,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFVG\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFNV\",\"Price\":420,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFCM\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"FPML\",\"Price\":420,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DNVL\",\"Price\":420,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DBML\",\"Price\":420,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"CHML\",\"Price\":420,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS114900059456\",\"FlightNumber\":\"SG-131\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"strTraceId\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:50\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-25T07:50\",\"LocalFromTime\":\"2021-03-25 07:50\",\"FromUTCTime\":\"2021-03-25T07:50\",\"LocalToTime\":\"2021-03-25 10:10\",\"ToUTCTime\":\"2021-03-25T10:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":17487.8,\"ApiResultIndex\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13379,\"Tax\":4108.799999999999,\"YQTax\":0,\"OtherCharges\":3251,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":387,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17487.8,\"PublishedFare\":17487.8,\"OfferedFare\":16782.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3754.3999999999996,\"BaseFareCal\":12201.9,\"BaseFare\":8617,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":268,\"MFT\":5.4,\"OT\":3251,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":354.4,\"BaseFareCal\":4946.9,\"BaseFare\":4762,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":119,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"383\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T10:10\",\"SegFlightNumber\":\"SG-131\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-25T07:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:50\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"839\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:35\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-31T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7491611080_0DELDXBSG131DXBDELSG12_28418328125091851\",\"localFromDateTime\":\"2021-03-25 07:50\",\"localToDateTime\":\"2021-03-25 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS114900059456\",\"FlightNumber\":\"SG-12\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"03:35\",\"TravelDate\":\"2021-03-31T22:45\",\"LocalFromTime\":\"2021-03-31 22:45\",\"FromUTCTime\":\"2021-03-31T22:45\",\"LocalToTime\":\"2021-04-01 03:35\",\"ToUTCTime\":\"2021-04-01T03:35\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Wed, 31 Mar\",\"ArrivalDateTxt\":\"Thu, 01 Apr\",\"FlightDuration\":\"4h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"839\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:35\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-31T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LCVS\",\"Price\":293,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LCNS\",\"Price\":293,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"JNML\",\"Price\":400,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"GFVG\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"GFNV\",\"Price\":400,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"GFCM\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"DNVL\",\"Price\":400,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"DBML\",\"Price\":400,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"CHML\",\"Price\":400,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"31\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"1\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"31\\/03\\/2021\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":\"2021-03-31\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=25%2F03%2F2021&return_date=31%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1993-03-17\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 18:58:00\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"hhiljlj111\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2021-03-26\",\"passporIssue\":\"2020-12-16\",\"CustomerSysId\":\"332\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"AB\",\"LastName\":\"Kumari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 18:58:00\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"khjl4142\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2020-03-25\",\"passporIssue\":\"2020-11-26\",\"CustomerMemberSysId\":\"333\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221948\",\"TPSysId\":\"221949\",\"VersionId\":[\"26868\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7674\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"658\",\"659\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"332\",\"333\"],\"flight_booking_id\":[\"336\",\"337\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 18:59:28'),(97,'4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954','{\"BookingData\":[{\"bookingId\":\"TJS116000059466\",\"FlightNumber\":\"SG-131\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:50\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-25T07:50\",\"LocalFromTime\":\"2021-03-25 07:50\",\"FromUTCTime\":\"2021-03-25T07:50\",\"LocalToTime\":\"2021-03-25 10:10\",\"ToUTCTime\":\"2021-03-25T10:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13379,\"Tax\":4108.799999999999,\"YQTax\":0,\"OtherCharges\":3251,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":387,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17487.8,\"PublishedFare\":17487.8,\"OfferedFare\":16782.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3754.3999999999996,\"BaseFareCal\":12201.9,\"BaseFare\":8617,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":268,\"MFT\":5.4,\"OT\":3251,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":354.4,\"BaseFareCal\":4946.9,\"BaseFare\":4762,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":119,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T10:10\",\"SegFlightNumber\":\"SG-131\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-25T07:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:50\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCVS\",\"Price\":308,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"LCNS\",\"Price\":308,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"JNML\",\"Price\":420,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFVG\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFNV\",\"Price\":420,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"GFCM\",\"Price\":420,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"FPML\",\"Price\":420,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DNVL\",\"Price\":420,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"DBML\",\"Price\":420,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"CHML\",\"Price\":420,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"635\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS116000059466\",\"FlightNumber\":\"SG-131\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"strTraceId\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:50\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2021-03-25T07:50\",\"LocalFromTime\":\"2021-03-25 07:50\",\"FromUTCTime\":\"2021-03-25T07:50\",\"LocalToTime\":\"2021-03-25 10:10\",\"ToUTCTime\":\"2021-03-25T10:10\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":230,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":17487.8,\"ApiResultIndex\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13379,\"Tax\":4108.799999999999,\"YQTax\":0,\"OtherCharges\":3251,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":387,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":17487.8,\"PublishedFare\":17487.8,\"OfferedFare\":16782.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":338.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3754.3999999999996,\"BaseFareCal\":12201.9,\"BaseFare\":8617,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":268,\"MFT\":5.4,\"OT\":3251,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":354.4,\"BaseFareCal\":4946.9,\"BaseFare\":4762,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":119,\"OT\":0,\"MFT\":5.4,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}}},\"Segments\":[[{\"segmentid\":\"635\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T10:10\",\"SegFlightNumber\":\"SG-131\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-25T07:50\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"07:50\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"161\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:35\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-31T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7422264288_0DELDXBSG131DXBDELSG12_28419132444079954\",\"localFromDateTime\":\"2021-03-25 07:50\",\"localToDateTime\":\"2021-03-25 10:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS116000059466\",\"FlightNumber\":\"SG-12\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"03:35\",\"TravelDate\":\"2021-03-31T22:45\",\"LocalFromTime\":\"2021-03-31 22:45\",\"FromUTCTime\":\"2021-03-31T22:45\",\"LocalToTime\":\"2021-04-01 03:35\",\"ToUTCTime\":\"2021-04-01T03:35\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Wed, 31 Mar\",\"ArrivalDateTxt\":\"Thu, 01 Apr\",\"FlightDuration\":\"4h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"161\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-01T03:35\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-31T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:35\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB05\",\"Price\":2475,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"EB10\",\"Price\":4950,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VGSW\",\"Price\":268,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NVSW\",\"Price\":268,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNSW\",\"Price\":268,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCVS\",\"Price\":293,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"LCNS\",\"Price\":293,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"JNML\",\"Price\":400,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFVG\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFNV\",\"Price\":400,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"GFCM\",\"Price\":400,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DNVL\",\"Price\":400,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"DBML\",\"Price\":400,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"CHML\",\"Price\":400,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"161\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":2,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"31\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"1\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"31\\/03\\/2021\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":\"2021-03-31\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=25%2F03%2F2021&return_date=31%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1946-03-18\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:16:06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"er\",\"PassportNation\":\"HU\",\"PassportExpiry\":\"2021-06-15\",\"passporIssue\":\"2021-03-16\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"AB\",\"LastName\":\"Kumari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:16:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"khjl4142\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2020-03-25\",\"passporIssue\":\"2020-11-26\",\"CustomerMemberSysId\":\"333\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221958\",\"TPSysId\":\"221959\",\"VersionId\":[\"26875\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7676\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"660\",\"661\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"333\"],\"flight_booking_id\":[\"338\",\"339\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 19:16:16'),(98,'5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366','{\"BookingData\":[{\"bookingId\":\"TJS103000059470\",\"FlightNumber\":\"6E-912\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2021-04-06T17:30\",\"LocalFromTime\":\"2021-04-06 17:30\",\"FromUTCTime\":\"2021-04-06T17:30\",\"LocalToTime\":\"2021-04-06 22:15\",\"ToUTCTime\":\"2021-04-06T22:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Raipur\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":285,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5147.7,\"PublishedFareTxt\":\"5,148\",\"ApiResultIndex\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4300,\"Tax\":847.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":223,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5147.7,\"PublishedFare\":5324.7,\"OfferedFare\":5047.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":847.7,\"BaseFareCal\":5089.95,\"BaseFare\":4300,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":223,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5324.7,\"CostToCustomer\":5324.7,\"BaseFareCal\":5089.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":5089.95,\"intOfferedFare\":5047.7,\"intPublishFare\":5147.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"299\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2021-04-06T19:20\",\"SegFlightNumber\":\"6E-912\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-06T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":65,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Raipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"916\",\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-04-06T22:15\",\"SegFlightNumber\":\"6E-566\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2021-04-06T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"299\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"299\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"299\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"299\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"299\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103000059470\",\"FlightNumber\":\"6E-912\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"strTraceId\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2021-04-06T17:30\",\"LocalFromTime\":\"2021-04-06 17:30\",\"FromUTCTime\":\"2021-04-06T17:30\",\"LocalToTime\":\"2021-04-06 22:15\",\"ToUTCTime\":\"2021-04-06T22:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Raipur\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":285,\"DepartureDateTxt\":\"Tue, 06 Apr\",\"ArrivalDateTxt\":\"Tue, 06 Apr\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5147.7,\"ApiResultIndex\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4300,\"Tax\":847.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":223,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5147.7,\"PublishedFare\":5324.7,\"OfferedFare\":5047.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":847.7,\"BaseFareCal\":5089.95,\"BaseFare\":4300,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":223,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"299\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2021-04-06T19:20\",\"SegFlightNumber\":\"6E-912\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-06T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":65,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Raipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"916\",\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-04-06T22:15\",\"SegFlightNumber\":\"6E-566\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2021-04-06T20:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6597991829_10DELRPR6E912RPRMAA6E566_28419984094349366\",\"localFromDateTime\":\"2021-04-06 17:30\",\"localToDateTime\":\"2021-04-06 22:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Chennai (MAA)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"MAA\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Chennai, IN - Chennai Arpt (MAA)\",\"departure_date\":\"06\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"MAA\",\"from\":\"DEL\",\"to\":\"MAA\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"sourceCityId\":7701,\"destinationCityId\":6000,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-06\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Chennai+%28MAA%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=MAA&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&departure_date=06%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:20:31\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"334\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221962\",\"TPSysId\":\"221963\",\"VersionId\":[\"26876\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7677\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"662\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"334\",\"CustomerMemSysId\":[\"334\"],\"flight_booking_id\":[\"340\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 19:20:51'),(99,'5-1750014313_1DELBOM6E148_28420104463411940','{\"BookingData\":[{\"bookingId\":\"TJS109000059471\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-03-26T05:05\",\"LocalFromTime\":\"2021-03-26 05:05\",\"FromUTCTime\":\"2021-03-26T05:05\",\"LocalToTime\":\"2021-03-26 07:10\",\"ToUTCTime\":\"2021-03-26T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":138,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7387.099999999999,\"PublishedFareTxt\":\"7,387\",\"ApiResultIndex\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5890,\"Tax\":1497.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":230,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7387.099999999999,\"PublishedFare\":7918.1,\"OfferedFare\":7087.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2826.95,\"BaseFare\":2195,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2826.95,\"BaseFare\":2195,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":7918.1,\"CostToCustomer\":7918.1,\"BaseFareCal\":7213.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":7213.86,\"intOfferedFare\":7087.099999999999,\"intPublishFare\":7387.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-26T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":138,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109000059471\",\"FlightNumber\":\"6E-148\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"strTraceId\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"07:10\",\"TravelDate\":\"2021-03-26T05:05\",\"LocalFromTime\":\"2021-03-26 05:05\",\"FromUTCTime\":\"2021-03-26T05:05\",\"LocalToTime\":\"2021-03-26 07:10\",\"ToUTCTime\":\"2021-03-26T07:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":138,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7387.099999999999,\"ApiResultIndex\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5890,\"Tax\":1497.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":230,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7387.099999999999,\"PublishedFare\":7918.1,\"OfferedFare\":7087.099999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2826.95,\"BaseFare\":2195,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":689.7,\"BaseFareCal\":2826.95,\"BaseFare\":2195,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":115,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-26T07:10\",\"SegFlightNumber\":\"6E-148\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":138,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1750014313_1DELBOM6E148_28420104463411940\",\"localFromDateTime\":\"2021-03-26 05:05\",\"localToDateTime\":\"2021-03-26 07:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"26\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"26\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=26%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:25:21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Vivek\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:25:21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"228\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"AB\",\"LastName\":\"Kumari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-24\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:25:21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"333\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221970\",\"TPSysId\":\"221971\",\"VersionId\":[\"26878\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7678\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"663\",\"664\",\"665\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"228\",\"333\"],\"flight_booking_id\":[\"341\"]},\"selectedSeatSession\":{\"334\":{\"62\":{\"seatNo\":\"6C\",\"seatPosition\":{\"row\":6,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"6C\",\"amount\":250},\"228\":{\"seatNo\":\"7C\",\"seatPosition\":{\"row\":7,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"7C\",\"amount\":250}}},\"_sessiondata\":null}','2021-03-17 19:26:11'),(100,'4-1451484141_0DELBOMSG8701_38041253729840','{\"BookingData\":[{\"bookingId\":\"TJ107608686962\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2021-05-22T07:20\",\"LocalFromTime\":\"2021-05-22 07:20\",\"FromUTCTime\":\"2021-05-22T07:20\",\"LocalToTime\":\"2021-05-22 09:35\",\"ToUTCTime\":\"2021-05-22T09:35\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2537,\"PublishedFareTxt\":\"2,537\",\"ApiResultIndex\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1927,\"Tax\":610,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2537,\"PublishedFare\":2684.79,\"OfferedFare\":2504.54,\"CommissionEarned\":32.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":610,\"BaseFareCal\":2531.54,\"BaseFare\":1927,\"CommissionEarned\":32.46,\"TDS\":-1.26,\"MF\":21.19,\"YQ\":0,\"AGST\":102,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":32.46,\"IntCommissionValInPercentage\":10,\"IntCommission\":3.25,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27,\"PublishFare\":2684.79,\"CostToCustomer\":2684.79,\"BaseFareCal\":2531.54,\"intCommisionEarnedForAgency\":153.25,\"CostToCompany\":2531.54,\"intOfferedFare\":2504.54,\"intPublishFare\":2537,\"TripjackMarkup\":0,\"TripjackCommission\":32.46,\"TripjackTDS\":\"1.26\"}},\"Segments\":[{\"segmentid\":\"586\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"EB05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"EB10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"EB15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"EB20\",\"Price\":8000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"EB30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"JNSW\",\"Price\":238,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"LCNS\",\"Price\":275,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"FPML\",\"Price\":380,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"586\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107608686962\",\"FlightNumber\":\"SG-8701\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"strTraceId\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2021-05-22T07:20\",\"LocalFromTime\":\"2021-05-22 07:20\",\"FromUTCTime\":\"2021-05-22T07:20\",\"LocalToTime\":\"2021-05-22 09:35\",\"ToUTCTime\":\"2021-05-22T09:35\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2537,\"ApiResultIndex\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1927,\"Tax\":610,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2537,\"PublishedFare\":2684.79,\"OfferedFare\":2504.54,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":610,\"BaseFareCal\":2531.54,\"BaseFare\":1927,\"CommissionEarned\":32.46,\"TDS\":-1.26,\"MF\":21.19,\"YQ\":0,\"AGST\":102,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"586\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1451484141_0DELBOMSG8701_38041253729840\",\"localFromDateTime\":\"2021-05-22 07:20\",\"localToDateTime\":\"2021-05-22 09:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"22\\/05\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"22\\/05\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-05-22\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=22%2F05%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:36:09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"335\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221975\",\"TPSysId\":\"221976\",\"VersionId\":[],\"CustomerSysId\":\"103022\",\"TrxId\":\"7679\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"666\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"335\",\"CustomerMemSysId\":[\"335\"],\"flight_booking_id\":[\"342\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 19:36:20'),(101,'5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697','{\"BookingData\":[{\"bookingId\":\"TJS105100059478\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-05-22T09:45\",\"LocalFromTime\":\"2021-05-22 09:45\",\"FromUTCTime\":\"2021-05-22T09:45\",\"LocalToTime\":\"2021-05-22 15:40\",\"ToUTCTime\":\"2021-05-22T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":67,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"PublishedFareTxt\":\"4,317\",\"ApiResultIndex\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4493.7,\"CostToCustomer\":4493.7,\"BaseFareCal\":4258.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4258.95,\"intOfferedFare\":4216.7,\"intPublishFare\":4316.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"539\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-22T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"005\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-22T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"539\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105100059478\",\"FlightNumber\":\"6E-816\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"15:40\",\"TravelDate\":\"2021-05-22T09:45\",\"LocalFromTime\":\"2021-05-22 09:45\",\"FromUTCTime\":\"2021-05-22T09:45\",\"LocalToTime\":\"2021-05-22 15:40\",\"ToUTCTime\":\"2021-05-22T15:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":355,\"DepartureDateTxt\":\"Sat, 22 May\",\"ArrivalDateTxt\":\"Sat, 22 May\",\"FlightDuration\":\"5h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":67,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4316.7,\"ApiResultIndex\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3509,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":507,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":183,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4316.7,\"PublishedFare\":4493.7,\"OfferedFare\":4216.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4258.95,\"BaseFare\":3509,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":183,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"539\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2021-05-22T12:10\",\"SegFlightNumber\":\"6E-816\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-22T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":120,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"005\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-05-22T15:40\",\"SegFlightNumber\":\"6E-903\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2021-05-22T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:40\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8897980903_10DELHYD6E816HYDBOM6E903_28421090043534697\",\"localFromDateTime\":\"2021-05-22 09:45\",\"localToDateTime\":\"2021-05-22 15:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"22\\/05\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"22\\/05\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-05-22\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=22%2F05%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-17 19:38:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"336\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"221978\",\"TPSysId\":\"221979\",\"VersionId\":[\"26880\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7680\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"667\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"336\",\"CustomerMemSysId\":[\"336\"],\"flight_booking_id\":[\"343\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-17 19:39:01'),(102,'5-8880269668_10DELBOM6E5012_28476297120582197','{\"BookingData\":[{\"bookingId\":\"TJS107700059504\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"10:15\",\"TravelDate\":\"2021-03-30T08:05\",\"LocalFromTime\":\"2021-03-30 08:05\",\"FromUTCTime\":\"2021-03-30T08:05\",\"LocalToTime\":\"2021-03-30 10:15\",\"ToUTCTime\":\"2021-03-30T10:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":88,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"PublishedFareTxt\":\"3,067\",\"ApiResultIndex\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"OfferedFare\":2966.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":3243.7,\"CostToCustomer\":3243.7,\"BaseFareCal\":3008.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":3008.95,\"intOfferedFare\":2966.7,\"intPublishFare\":3066.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"512\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T10:15\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":88,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"512\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107700059504\",\"FlightNumber\":\"6E-5012\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"10:15\",\"TravelDate\":\"2021-03-30T08:05\",\"LocalFromTime\":\"2021-03-30 08:05\",\"FromUTCTime\":\"2021-03-30T08:05\",\"LocalToTime\":\"2021-03-30 10:15\",\"ToUTCTime\":\"2021-03-30T10:15\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":88,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3066.7,\"ApiResultIndex\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2369,\"Tax\":697.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":123,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3066.7,\"PublishedFare\":3243.7,\"OfferedFare\":2966.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"512\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T10:15\",\"SegFlightNumber\":\"6E-5012\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":88,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8880269668_10DELBOM6E5012_28476297120582197\",\"localFromDateTime\":\"2021-03-30 08:05\",\"localToDateTime\":\"2021-03-30 10:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"30\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-30\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=30%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 11:00:34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222026\",\"TPSysId\":\"222027\",\"VersionId\":[\"26891\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7688\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"668\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"344\"]},\"selectedSeatSession\":{\"512\":{\"62\":{\"seatNo\":\"6B\",\"seatPosition\":{\"row\":6,\"column\":2},\"isBooked\":false,\"code\":\"6B\",\"amount\":250}}},\"_sessiondata\":null}','2021-03-18 11:01:16'),(103,'4-8374846984_3DELBOMSG2871_28477589167138567','{\"BookingData\":[{\"bookingId\":\"TJS105100059519\",\"FlightNumber\":\"SG-2871\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2021-03-24T11:25\",\"LocalFromTime\":\"2021-03-24 11:25\",\"FromUTCTime\":\"2021-03-24T11:25\",\"LocalToTime\":\"2021-03-24 15:50\",\"ToUTCTime\":\"2021-03-24T15:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"4h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"935\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T15:50\",\"SegFlightNumber\":\"SG-2871\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T11:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105100059519\",\"FlightNumber\":\"SG-2871\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"strTraceId\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2021-03-24T11:25\",\"LocalFromTime\":\"2021-03-24 11:25\",\"FromUTCTime\":\"2021-03-24T11:25\",\"LocalToTime\":\"2021-03-24 15:50\",\"ToUTCTime\":\"2021-03-24T15:50\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":265,\"DepartureDateTxt\":\"Wed, 24 Mar\",\"ArrivalDateTxt\":\"Wed, 24 Mar\",\"FlightDuration\":\"4h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"935\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-24T15:50\",\"SegFlightNumber\":\"SG-2871\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-24T11:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-8374846984_3DELBOMSG2871_28477589167138567\",\"localFromDateTime\":\"2021-03-24 11:25\",\"localToDateTime\":\"2021-03-24 15:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"24\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"24\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-24\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=24%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"anuradha@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9997534969\",\"FirstName\":\"Annu\",\"LastName\":\"saini\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"A- 76\\r\\n\",\"CityTitle\":\"Delhi Hills\",\"CitySysId\":\"7700\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"231\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 11:36:28\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"339\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222044\",\"TPSysId\":\"222045\",\"VersionId\":[\"26899\"],\"CustomerSysId\":\"96134\",\"TrxId\":\"7692\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"339\":{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"JNSW\",\"Price\":\"229\",\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"}},\"SelectedBaggSessionNew\":{\"339\":{\"Currency\":\"INR\",\"key\":\"935\",\"Code\":\"BOF3\",\"Price\":\"315\",\"Weight\":\"Bag Out First with 3 Bag\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"671\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"339\",\"CustomerMemSysId\":[\"339\"],\"flight_booking_id\":[\"347\"]},\"selectedSeatSession\":{\"935\":{\"339\":{\"seatNo\":\"7B\",\"seatPosition\":{\"row\":7,\"column\":2},\"isBooked\":false,\"isAisle\":true,\"code\":\"7B\",\"amount\":263}}},\"_sessiondata\":null}','2021-03-18 11:38:37'),(104,'5-8005025951_25DELBOM6E171_28478515803680618,5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736','{\"BookingData\":[{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-03-30T02:30\",\"LocalFromTime\":\"2021-03-30 02:30\",\"FromUTCTime\":\"2021-03-30T02:30\",\"LocalToTime\":\"2021-03-30 04:35\",\"ToUTCTime\":\"2021-03-30T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7751.099999999999,\"PublishedFareTxt\":\"7,751\",\"ApiResultIndex\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6238,\"Tax\":1513.1000000000001,\"YQTax\":0,\"OtherCharges\":914,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":246,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7751.099999999999,\"PublishedFare\":8282.1,\"OfferedFare\":7451.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":697.7,\"BaseFareCal\":3008.95,\"BaseFare\":2369,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":123,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":8282.1,\"CostToCustomer\":8282.1,\"BaseFareCal\":7577.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":7577.86,\"intOfferedFare\":7451.099999999999,\"intPublishFare\":7751.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"665\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"2021-04-12 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-171\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2021-03-30T02:30\",\"LocalFromTime\":\"2021-03-30 02:30\",\"FromUTCTime\":\"2021-03-30T02:30\",\"LocalToTime\":\"2021-03-30 04:35\",\"ToUTCTime\":\"2021-03-30T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Tue, 30 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":19,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16804.2,\"ApiResultIndex\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13664,\"Tax\":3140.2000000000003,\"YQTax\":0,\"OtherCharges\":1876,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":558,\"CarrierMiscFee\":0,\"MUFee\":600,\"intPublishedFare\":16804.2,\"PublishedFare\":17866.2,\"OfferedFare\":16204.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":900,\"GSTOnMarkUp\":162,\"CommEarned\":1408.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1452.4,\"BaseFareCal\":6668.9,\"BaseFare\":5332,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":279,\"MFT\":5.4,\"OT\":938,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1452.4,\"BaseFareCal\":6668.9,\"BaseFare\":5332,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":279,\"MFT\":5.4,\"OT\":938,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":235.4,\"BaseFareCal\":3119.9,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":0,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"665\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-30T04:35\",\"SegFlightNumber\":\"6E-171\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-30T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":19,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"395\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-04-12T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-12T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"262\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-12T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-04-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8005025951_25DELBOM6E171_28478515803680618\",\"localFromDateTime\":\"2021-03-30 02:30\",\"localToDateTime\":\"2021-03-30 04:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS108700059523\",\"FlightNumber\":\"6E-918\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2021-04-12T11:10\",\"LocalFromTime\":\"2021-04-12 11:10\",\"FromUTCTime\":\"2021-04-12T11:10\",\"LocalToTime\":\"2021-04-12 16:10\",\"ToUTCTime\":\"2021-04-12T16:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Jodhpur\",\"GroundTime\":135,\"LAYOVERDuration\":\"2h 15m\",\"FlyingMinutes\":300,\"DepartureDateTxt\":\"Mon, 12 Apr\",\"ArrivalDateTxt\":\"Mon, 12 Apr\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":14,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9053.1,\"PublishedFareTxt\":\"9,053\",\"ApiResultIndex\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7426,\"Tax\":1627.1000000000001,\"YQTax\":0,\"OtherCharges\":962,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":312,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9053.1,\"PublishedFare\":9584.1,\"OfferedFare\":8753.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":754.7,\"BaseFareCal\":3659.95,\"BaseFare\":2963,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":754.7,\"BaseFareCal\":3659.95,\"BaseFare\":2963,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":9584.1,\"CostToCustomer\":9584.1,\"BaseFareCal\":8879.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":8879.86,\"intOfferedFare\":8753.1,\"intPublishFare\":9053.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"395\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-04-12T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-12T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"262\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-12T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-04-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":14,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"395\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8005025951_23BOMJDH6E918JDHDEL6E6685_28478515661522736\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-30 12:00\",\"localToDateTime\":\"2021-04-12 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"30\\/03\\/2021\",\"return_date\":\"12\\/04\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"30\\/03\\/2021\",\"return_dates\":\"12\\/04\\/2021\",\"strDepatureDate\":\"2021-03-30\",\"strReturnDate\":\"2021-04-12\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=30%2F03%2F2021&return_date=12%2F04%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 11:42:35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"C1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 11:42:35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"340\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"I1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-19\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 11:42:35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"341\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222047\",\"TPSysId\":\"222048\",\"VersionId\":[\"26901\",\"26902\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7693\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"672\",\"673\",\"674\"],[\"675\",\"676\",\"677\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"340\",\"341\"],\"flight_booking_id\":[\"348\",\"349\"]},\"selectedSeatSession\":{\"665\":{\"62\":{\"seatNo\":\"8B\",\"seatPosition\":{\"row\":8,\"column\":2},\"isBooked\":false,\"code\":\"8B\",\"amount\":250},\"340\":{\"seatNo\":\"9B\",\"seatPosition\":{\"row\":9,\"column\":2},\"isBooked\":false,\"code\":\"9B\",\"amount\":250}},\"395\":{\"62\":{\"seatNo\":\"6B\",\"seatPosition\":{\"row\":6,\"column\":2},\"isBooked\":false,\"code\":\"6B\",\"amount\":250},\"340\":{\"seatNo\":\"7B\",\"seatPosition\":{\"row\":7,\"column\":2},\"isBooked\":false,\"code\":\"7B\",\"amount\":250}},\"262\":{\"62\":{\"seatNo\":\"3B\",\"seatPosition\":{\"row\":3,\"column\":2},\"isBooked\":false,\"code\":\"3B\",\"amount\":400},\"340\":{\"seatNo\":\"3C\",\"seatPosition\":{\"row\":3,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"3C\",\"amount\":400}}},\"_sessiondata\":{\"EmailId\":\"deepak@catpl.co.in \",\"CustomerSysId\":\"104941\",\"AgencySysId\":\"5293\",\"FirstName\":\"Deepak \",\"LastName\":\"Kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"9695357709\"}}','2021-03-18 11:44:32'),(105,'5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411','{\"BookingData\":[{\"bookingId\":\"TJS109200059563\",\"FlightNumber\":\"6E-2027\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2021-03-26T17:55\",\"LocalFromTime\":\"2021-03-26 17:55\",\"FromUTCTime\":\"2021-03-26T17:55\",\"LocalToTime\":\"2021-03-26 23:35\",\"ToUTCTime\":\"2021-03-26T23:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":36,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11757.1,\"PublishedFareTxt\":\"11,757\",\"ApiResultIndex\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9952,\"Tax\":1805.1000000000001,\"YQTax\":0,\"OtherCharges\":1014,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11757.1,\"PublishedFare\":12288.1,\"OfferedFare\":11457.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":12288.1,\"CostToCustomer\":12288.1,\"BaseFareCal\":11583.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":11583.86,\"intOfferedFare\":11457.1,\"intPublishFare\":11757.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"872\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-26T20:35\",\"SegFlightNumber\":\"6E-2027\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":125,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"359\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-26T23:35\",\"SegFlightNumber\":\"6E-543\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-26T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"872\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109200059563\",\"FlightNumber\":\"6E-2027\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:35\",\"TravelDate\":\"2021-03-26T17:55\",\"LocalFromTime\":\"2021-03-26 17:55\",\"FromUTCTime\":\"2021-03-26T17:55\",\"LocalToTime\":\"2021-03-26 23:35\",\"ToUTCTime\":\"2021-03-26T23:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":125,\"LAYOVERDuration\":\"2h 5m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":36,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11757.1,\"ApiResultIndex\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9952,\"Tax\":1805.1000000000001,\"YQTax\":0,\"OtherCharges\":1014,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11757.1,\"PublishedFare\":12288.1,\"OfferedFare\":11457.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":843.7,\"BaseFareCal\":5011.95,\"BaseFare\":4226,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":219,\"MFT\":2.7,\"OT\":507,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"872\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-26T20:35\",\"SegFlightNumber\":\"6E-2027\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-26T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":125,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"2h 5m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"359\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-26T23:35\",\"SegFlightNumber\":\"6E-543\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-26T22:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":0,\"NoOfSeatAvailable\":36,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:35\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6593643427_16DELBLR6E2027BLRMAA6E543_28484569146790411\",\"localFromDateTime\":\"2021-03-26 17:55\",\"localToDateTime\":\"2021-03-26 23:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Chennai (MAA)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"MAA\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Chennai, IN - Chennai Arpt (MAA)\",\"departure_date\":\"26\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"MAA\",\"from\":\"DEL\",\"to\":\"MAA\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"sourceCityId\":7701,\"destinationCityId\":6000,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"26\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Chennai+%28MAA%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=MAA&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&departure_date=26%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:17:57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"C2\",\"LastName\":\"K2\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:17:57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"342\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"I2\",\"LastName\":\"K2\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-11\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:17:57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"343\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222103\",\"TPSysId\":\"222104\",\"VersionId\":[\"26914\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7697\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"678\",\"679\",\"680\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"342\",\"343\"],\"flight_booking_id\":[\"350\"]},\"selectedSeatSession\":{\"872\":{\"62\":{\"seatNo\":\"7B\",\"seatPosition\":{\"row\":7,\"column\":2},\"isBooked\":false,\"code\":\"7B\",\"amount\":350},\"342\":{\"seatNo\":\"8B\",\"seatPosition\":{\"row\":8,\"column\":2},\"isBooked\":false,\"code\":\"8B\",\"amount\":350}}},\"_sessiondata\":{\"EmailId\":\"deepak@catpl.co.in \",\"CustomerSysId\":\"104941\",\"AgencySysId\":\"5293\",\"FirstName\":\"Deepak \",\"LastName\":\"Kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"9695357709\"}}','2021-03-18 13:18:49'),(106,'4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494','{\"BookingData\":[{\"bookingId\":\"TJS101200059592\",\"FlightNumber\":\"SG-503\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2021-03-25T05:40\",\"LocalFromTime\":\"2021-03-25 05:40\",\"FromUTCTime\":\"2021-03-25T05:40\",\"LocalToTime\":\"2021-03-25 22:40\",\"ToUTCTime\":\"2021-03-25T22:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":705,\"LAYOVERDuration\":\"11h 45m\",\"FlyingMinutes\":1020,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"17h 0m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11848.1,\"PublishedFareTxt\":\"11,848\",\"ApiResultIndex\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10229,\"Tax\":1619.1000000000001,\"YQTax\":0,\"OtherCharges\":742,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":524,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11848.1,\"PublishedFare\":12379.1,\"OfferedFare\":11548.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":189.7,\"BaseFareCal\":1560.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":72,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":12379.1,\"CostToCustomer\":12379.1,\"BaseFareCal\":11674.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":11674.86,\"intOfferedFare\":11548.1,\"intPublishFare\":11848.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"113\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-25T08:15\",\"SegFlightNumber\":\"SG-503\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":705,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":\"11h 45m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"775\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:40\",\"SegFlightNumber\":\"SG-179\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"JNML\",\"Price\":350,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFVG\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFNV\",\"Price\":350,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"DNVL\",\"Price\":350,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"DBML\",\"Price\":350,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"113\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101200059592\",\"FlightNumber\":\"SG-503\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2021-03-25T05:40\",\"LocalFromTime\":\"2021-03-25 05:40\",\"FromUTCTime\":\"2021-03-25T05:40\",\"LocalToTime\":\"2021-03-25 22:40\",\"ToUTCTime\":\"2021-03-25T22:40\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":705,\"LAYOVERDuration\":\"11h 45m\",\"FlyingMinutes\":1020,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"17h 0m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":11848.1,\"ApiResultIndex\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10229,\"Tax\":1619.1000000000001,\"YQTax\":0,\"OtherCharges\":742,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":524,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":11848.1,\"PublishedFare\":12379.1,\"OfferedFare\":11548.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":714.7,\"BaseFareCal\":5056.95,\"BaseFare\":4400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":371,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":189.7,\"BaseFareCal\":1560.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":72,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"113\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-25T08:15\",\"SegFlightNumber\":\"SG-503\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":705,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":\"11h 45m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"775\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T22:40\",\"SegFlightNumber\":\"SG-179\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-25T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6530604843_1MAACCUSG503CCUDELSG179_28486898998334494\",\"localFromDateTime\":\"2021-03-25 05:40\",\"localToDateTime\":\"2021-03-25 22:40\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"MAA\",\"to\":\"DEL\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":6000,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=1&infants=1&class=2&source_city=MAA&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=25%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Atulya\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:59:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"C2\",\"LastName\":\"K2\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:59:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"342\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"I1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-12\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 13:59:23\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"234\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222145\",\"TPSysId\":\"222146\",\"VersionId\":[],\"CustomerSysId\":\"104941\",\"TrxId\":\"7715\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"696\",\"697\",\"698\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\",\"342\",\"234\"],\"flight_booking_id\":[\"356\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-18 13:59:45'),(107,'10-8810145964_0MAADXBFZ8516_28494700828366717','{\"BookingData\":[{\"bookingId\":\"TJS111500059650\",\"FlightNumber\":\"FZ-8516\",\"AirlineName\":\"Fly Dubai\",\"AirlineCode\":\"FZ\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"AirlineSysId\":\"229\",\"DepartureTime\":\"20:20\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2021-03-25T20:20\",\"LocalFromTime\":\"2021-03-25 20:20\",\"FromUTCTime\":\"2021-03-25T20:20\",\"LocalToTime\":\"2021-03-25 23:10\",\"ToUTCTime\":\"2021-03-25T23:10\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":260,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9898.7,\"PublishedFareTxt\":\"9,899\",\"ApiResultIndex\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6850,\"Tax\":3048.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":437,\"CarrierMiscFee\":775,\"MUFee\":100,\"intPublishedFare\":9898.7,\"PublishedFare\":9898.7,\"OfferedFare\":9798.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3048.7,\"BaseFareCal\":9813.95,\"BaseFare\":6850,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":437,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":775,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":9898.7,\"CostToCustomer\":9898.7,\"BaseFareCal\":9813.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":9813.95,\"intOfferedFare\":9798.7,\"intPublishFare\":9898.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"850\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T23:10\",\"SegFlightNumber\":\"FZ-8516\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"850\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS111500059650\",\"FlightNumber\":\"FZ-8516\",\"AirlineName\":\"Fly Dubai\",\"AirlineCode\":\"FZ\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"strTraceId\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"AirlineSysId\":\"229\",\"DepartureTime\":\"20:20\",\"ArrivalTime\":\"23:10\",\"TravelDate\":\"2021-03-25T20:20\",\"LocalFromTime\":\"2021-03-25 20:20\",\"FromUTCTime\":\"2021-03-25T20:20\",\"LocalToTime\":\"2021-03-25 23:10\",\"ToUTCTime\":\"2021-03-25T23:10\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":260,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9898.7,\"ApiResultIndex\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6850,\"Tax\":3048.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":437,\"CarrierMiscFee\":775,\"MUFee\":100,\"intPublishedFare\":9898.7,\"PublishedFare\":9898.7,\"OfferedFare\":9798.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3048.7,\"BaseFareCal\":9813.95,\"BaseFare\":6850,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":437,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":775,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"850\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T23:10\",\"SegFlightNumber\":\"FZ-8516\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T20:20\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":260,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"20:20\",\"strArrivalDtTime\":\"23:10\",\"FlightDuration\":\"4h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-8810145964_0MAADXBFZ8516_28494700828366717\",\"localFromDateTime\":\"2021-03-25 20:20\",\"localToDateTime\":\"2021-03-25 23:10\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"MAA\",\"to\":\"DXB\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":6000,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=0&class=2&source_city=MAA&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=25%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8318864487\",\"FirstName\":\"Arya\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1946-03-11\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 16:07:22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"ghkhlj\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-15\",\"passporIssue\":\"2017-03-15\",\"CustomerSysId\":\"99\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222227\",\"TPSysId\":\"222228\",\"VersionId\":[\"26956\"],\"CustomerSysId\":\"106515\",\"TrxId\":\"7726\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"700\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"99\",\"CustomerMemSysId\":[\"99\"],\"flight_booking_id\":[\"358\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-18 16:11:38'),(108,'10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006','{\"BookingData\":[{\"bookingId\":\"TJS113200059662\",\"FlightNumber\":\"UK-802\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2021-03-25T08:40\",\"LocalFromTime\":\"2021-03-25 08:40\",\"FromUTCTime\":\"2021-03-25T08:40\",\"LocalToTime\":\"2021-03-25 15:55\",\"ToUTCTime\":\"2021-03-25T15:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":525,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":13504.7,\"PublishedFareTxt\":\"13,505\",\"ApiResultIndex\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10155,\"Tax\":3349.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":608,\"CarrierMiscFee\":905,\"MUFee\":100,\"intPublishedFare\":13504.7,\"PublishedFare\":13504.7,\"OfferedFare\":13404.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3349.7,\"BaseFareCal\":13419.95,\"BaseFare\":10155,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":608,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":905,\"intTotalGST\":15.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":15.25,\"PublishFare\":13504.7,\"CostToCustomer\":13504.7,\"BaseFareCal\":13419.95,\"intCommisionEarnedForAgency\":84.75,\"CostToCompany\":13419.95,\"intOfferedFare\":13404.7,\"intPublishFare\":13504.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"859\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-25T09:45\",\"SegFlightNumber\":\"UK-802\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":65,\"GroundTime\":225,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"200\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T15:55\",\"SegFlightNumber\":\"FZ-4010\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-25T13:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:30\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS113200059662\",\"FlightNumber\":\"UK-802\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"15:55\",\"TravelDate\":\"2021-03-25T08:40\",\"LocalFromTime\":\"2021-03-25 08:40\",\"FromUTCTime\":\"2021-03-25T08:40\",\"LocalToTime\":\"2021-03-25 15:55\",\"ToUTCTime\":\"2021-03-25T15:55\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":225,\"LAYOVERDuration\":\"3h 45m\",\"FlyingMinutes\":525,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"7h 15m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":13504.7,\"ApiResultIndex\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10155,\"Tax\":3349.7,\"YQTax\":1091,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":608,\"CarrierMiscFee\":905,\"MUFee\":100,\"intPublishedFare\":13504.7,\"PublishedFare\":13504.7,\"OfferedFare\":13404.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3349.7,\"BaseFareCal\":13419.95,\"BaseFare\":10155,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":1091,\"AGST\":608,\"MFT\":2.7,\"OT\":628,\"MU\":100,\"YR\":905,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":84.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"859\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2021-03-25T09:45\",\"SegFlightNumber\":\"UK-802\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":65,\"GroundTime\":225,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"3h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"200\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T15:55\",\"SegFlightNumber\":\"FZ-4010\",\"AirlineCode\":\"FZ\",\"AirlineName\":\"Fly Dubai\",\"FareClass\":\"K\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2021-03-25T13:30\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:30\",\"strArrivalDtTime\":\"15:55\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/FZ.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-1037113016_11MAABLRUK802BLRDXBFZ4010_28495650120672006\",\"localFromDateTime\":\"2021-03-25 08:40\",\"localToDateTime\":\"2021-03-25 15:55\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"MAA\",\"to\":\"DXB\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":6000,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=0&class=2&source_city=MAA&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=25%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8318864487\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1950-03-21\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 16:24:31\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"hbxkduhw\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-03-16\",\"passporIssue\":\"2012-03-14\",\"CustomerSysId\":\"349\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222237\",\"TPSysId\":\"222238\",\"VersionId\":[\"26957\"],\"CustomerSysId\":\"106515\",\"TrxId\":\"7727\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"349\":{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"VGML\",\"Price\":\"0\",\"Description\":\"Vegan Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"701\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"349\",\"CustomerMemSysId\":[\"349\"],\"flight_booking_id\":[\"359\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"deepak.catpl@gmail.com \",\"CustomerSysId\":\"106515\",\"AgencySysId\":\"5293\",\"FirstName\":\"Arya \",\"LastName\":\"kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"8318864487\"}}','2021-03-18 16:25:08'),(109,'5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380','{\"BookingData\":[{\"bookingId\":\"TJS118000059683\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"08:10\",\"TravelDate\":\"2021-03-25T05:05\",\"LocalFromTime\":\"2021-03-25 05:05\",\"FromUTCTime\":\"2021-03-25T05:05\",\"LocalToTime\":\"2021-03-25 08:10\",\"ToUTCTime\":\"2021-03-25T08:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12507,\"Tax\":3680.3999999999996,\"YQTax\":0,\"OtherCharges\":3107,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":338,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":16187.400000000001,\"PublishedFare\":16187.400000000001,\"OfferedFare\":16605.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3680.3999999999996,\"BaseFareCal\":16017.900000000001,\"BaseFare\":12507,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":338,\"MFT\":5.4,\"OT\":3107,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"672\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T08:10\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"672\",\"Code\":\"XBPA\",\"Price\":2625,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"672\",\"Code\":\"XBPB\",\"Price\":5250,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-30 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118000059683\",\"FlightNumber\":\"6E-65\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"strTraceId\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:05\",\"ArrivalTime\":\"08:10\",\"TravelDate\":\"2021-03-25T05:05\",\"LocalFromTime\":\"2021-03-25 05:05\",\"FromUTCTime\":\"2021-03-25T05:05\",\"LocalToTime\":\"2021-03-25 08:10\",\"ToUTCTime\":\"2021-03-25T08:10\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":16187.400000000001,\"ApiResultIndex\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12507,\"Tax\":3680.3999999999996,\"YQTax\":0,\"OtherCharges\":3107,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":338,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":16187.400000000001,\"PublishedFare\":16187.400000000001,\"OfferedFare\":16605.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"IsGSTRequired\":false,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3680.3999999999996,\"BaseFareCal\":16017.900000000001,\"BaseFare\":12507,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":338,\"MFT\":5.4,\"OT\":3107,\"MU\":200,\"YR\":0,\"intTotalGST\":30.5,\"apiMarkup\":169.5,\"IntCommission\":0,\"apiTaxOnMarkup\":30.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":169.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[[{\"segmentid\":\"672\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2021-03-25T08:10\",\"SegFlightNumber\":\"6E-65\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2021-03-25T05:05\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"05:05\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"603\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-31T02:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-30T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":195,\"GroundTime\":875,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"02:45\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"14h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"703\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-31T19:25\",\"SegFlightNumber\":\"6E-434\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-31T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7774013612_1MAADXB6E65DXBBOM6E62BOMMAA6E434_28497589653980380\",\"localFromDateTime\":\"2021-03-25 05:05\",\"localToDateTime\":\"2021-03-25 08:10\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS118000059683\",\"FlightNumber\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:00\",\"ArrivalTime\":\"19:25\",\"TravelDate\":\"2021-03-30T22:00\",\"LocalFromTime\":\"2021-03-30 22:00\",\"FromUTCTime\":\"2021-03-30T22:00\",\"LocalToTime\":\"2021-03-31 19:25\",\"ToUTCTime\":\"2021-03-31T19:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":875,\"LAYOVERDuration\":\"14h 35m\",\"FlyingMinutes\":1195,\"DepartureDateTxt\":\"Tue, 30 Mar\",\"ArrivalDateTxt\":\"Wed, 31 Mar\",\"FlightDuration\":\"21h 25m\",\"SourcePlaceSysId\":\"6000\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":62,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[],\"Segments\":[{\"segmentid\":\"603\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-31T02:45\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2021-03-30T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":195,\"GroundTime\":875,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"02:45\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"14h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"703\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-31T19:25\",\"SegFlightNumber\":\"6E-434\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-31T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":62,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"603\",\"Code\":\"XBPA\",\"Price\":2988,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"603\",\"Code\":\"XBPB\",\"Price\":5976,\"Weight\":\"10 Kg\"}],\"Meal\":null,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-25 12:00\",\"localToDateTime\":\"2021-03-30 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":\"6000\",\"intDestinationCityId\":\"8219\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"departure_date\":\"25\\/03\\/2021\",\"return_date\":\"30\\/03\\/2021\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"MAA\",\"to\":\"DXB\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB)\",\"sourceCityId\":6000,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"25\\/03\\/2021\",\"return_dates\":\"30\\/03\\/2021\",\"strDepatureDate\":\"2021-03-25\",\"strReturnDate\":\"2021-03-30\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=0&class=2&source_city=MAA&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29&departure_date=25%2F03%2F2021&return_date=30%2F03%2F2021&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"1946-03-17\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 16:59:05\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"kdfhkdy\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-07-21\",\"passporIssue\":\"2020-03-10\",\"CustomerSysId\":\"350\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222265\",\"TPSysId\":\"222266\",\"VersionId\":[\"26969\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7731\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"702\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"350\",\"CustomerMemSysId\":[\"350\"],\"flight_booking_id\":[\"360\",\"361\"]},\"selectedSeatSession\":{\"672\":{\"350\":{\"seatNo\":\"5B\",\"seatPosition\":{\"row\":5,\"column\":2},\"isBooked\":false,\"code\":\"5B\",\"amount\":400}},\"603\":{\"350\":{\"seatNo\":\"6B\",\"seatPosition\":{\"row\":6,\"column\":2},\"isBooked\":false,\"code\":\"6B\",\"amount\":400}}},\"_sessiondata\":null}','2021-03-18 17:01:22'),(110,'4-5368534800_4DELBOMSG7177_28501832856284484','{\"BookingData\":[{\"bookingId\":\"TJS104300059706\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-23T16:40\",\"LocalFromTime\":\"2021-03-23 16:40\",\"FromUTCTime\":\"2021-03-23T16:40\",\"LocalToTime\":\"2021-03-23 20:15\",\"ToUTCTime\":\"2021-03-23T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9761.1,\"PublishedFareTxt\":\"9,761\",\"ApiResultIndex\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8197,\"Tax\":1564.1000000000001,\"YQTax\":0,\"OtherCharges\":790,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":421,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9761.1,\"PublishedFare\":10292.1,\"OfferedFare\":9461.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":188.7,\"BaseFareCal\":1559.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":10292.1,\"CostToCustomer\":10292.1,\"BaseFareCal\":9587.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":9587.86,\"intOfferedFare\":9461.1,\"intPublishFare\":9761.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"262\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"LCVS\",\"Price\":256,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"LCNS\",\"Price\":256,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"JNML\",\"Price\":368,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFVG\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFNV\",\"Price\":368,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"GFCM\",\"Price\":368,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"FPML\",\"Price\":368,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"DNVL\",\"Price\":368,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"DBML\",\"Price\":368,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"262\",\"Code\":\"CHML\",\"Price\":368,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104300059706\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-23T16:40\",\"LocalFromTime\":\"2021-03-23 16:40\",\"FromUTCTime\":\"2021-03-23T16:40\",\"LocalToTime\":\"2021-03-23 20:15\",\"ToUTCTime\":\"2021-03-23T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":9761.1,\"ApiResultIndex\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8197,\"Tax\":1564.1000000000001,\"YQTax\":0,\"OtherCharges\":790,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":421,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":9761.1,\"PublishedFare\":10292.1,\"OfferedFare\":9461.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":188.7,\"BaseFareCal\":1559.95,\"BaseFare\":1429,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"MFT\":2.7,\"OT\":0,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"262\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-23T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-23T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5368534800_4DELBOMSG7177_28501832856284484\",\"localFromDateTime\":\"2021-03-23 16:40\",\"localToDateTime\":\"2021-03-23 20:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=23%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 18:05:27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"351\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"vivek\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 18:05:27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"352\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"30\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"baibhav\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-17\",\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 18:05:27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"353\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222306\",\"TPSysId\":\"222307\",\"VersionId\":[],\"CustomerSysId\":\"103115\",\"TrxId\":\"7736\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"704\",\"705\",\"706\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"351\",\"352\",\"353\"],\"flight_booking_id\":[\"364\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-18 18:05:49'),(111,'5-7340912259_0DELCCU6E2265_28502669460919848,5-7340912259_15CCUDEL6E2127_28502669401397036','{\"BookingData\":[{\"bookingId\":\"TJS108700059717\",\"FlightNumber\":\"6E-2265\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2021-03-18T22:45\",\"LocalFromTime\":\"2021-03-18 22:45\",\"FromUTCTime\":\"2021-03-18T22:45\",\"LocalToTime\":\"2021-03-19 01:00\",\"ToUTCTime\":\"2021-03-19T01:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":32,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5901.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5666.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5901.7,\"CostToCustomer\":5901.7,\"BaseFareCal\":5666.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":5666.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"915\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-19T01:00\",\"SegFlightNumber\":\"6E-2265\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":32,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"915\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14323\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108700059717\",\"FlightNumber\":\"6E-2265\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"strTraceId\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2021-03-18T22:45\",\"LocalFromTime\":\"2021-03-18 22:45\",\"FromUTCTime\":\"2021-03-18T22:45\",\"LocalToTime\":\"2021-03-19 01:00\",\"ToUTCTime\":\"2021-03-19T01:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 18 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":32,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9641.4,\"ApiResultIndex\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7583,\"Tax\":2058.4,\"YQTax\":0,\"OtherCharges\":1434,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":389,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":9641.4,\"PublishedFare\":9995.4,\"OfferedFare\":9441.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2058.4,\"BaseFareCal\":9525.9,\"BaseFare\":7583,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":389,\"MFT\":5.4,\"OT\":1434,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"915\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2021-03-19T01:00\",\"SegFlightNumber\":\"6E-2265\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":32,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"460\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-31T03:25\",\"SegFlightNumber\":\"6E-2127\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-31T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"03:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7340912259_0DELCCU6E2265_28502669460919848\",\"localFromDateTime\":\"2021-03-18 22:45\",\"localToDateTime\":\"2021-03-19 01:00\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14323\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS108700059717\",\"FlightNumber\":\"6E-2127\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7340912259_15CCUDEL6E2127_28502669401397036\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"03:25\",\"TravelDate\":\"2021-03-31T01:10\",\"LocalFromTime\":\"2021-03-31 01:10\",\"FromUTCTime\":\"2021-03-31T01:10\",\"LocalToTime\":\"2021-03-31 03:25\",\"ToUTCTime\":\"2021-03-31T03:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 31 Mar\",\"ArrivalDateTxt\":\"Wed, 31 Mar\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3916.7,\"PublishedFareTxt\":\"3,917\",\"ApiResultIndex\":\"5-7340912259_15CCUDEL6E2127_28502669401397036\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2683,\"Tax\":1233.7,\"YQTax\":0,\"OtherCharges\":977,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":139,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3916.7,\"PublishedFare\":4093.7,\"OfferedFare\":3816.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7340912259_15CCUDEL6E2127_28502669401397036\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1233.7,\"BaseFareCal\":3858.95,\"BaseFare\":2683,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":139,\"MFT\":2.7,\"OT\":977,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4093.7,\"CostToCustomer\":4093.7,\"BaseFareCal\":3858.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":3858.95,\"intOfferedFare\":3816.7,\"intPublishFare\":3916.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"460\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-31T03:25\",\"SegFlightNumber\":\"6E-2127\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2021-03-31T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"03:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"460\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"460\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"460\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"460\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"460\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7340912259_15CCUDEL6E2127_28502669401397036\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-18 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"14323\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"departure_date\":\"18\\/03\\/2021\",\"return_date\":\"31\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"DEL\",\"to\":\"CCU\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"sourceCityId\":7701,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/03\\/2021\",\"return_dates\":\"31\\/03\\/2021\",\"strDepatureDate\":\"2021-03-18\",\"strReturnDate\":\"2021-03-31\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Kolkata+%28CCU%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&departure_date=18%2F03%2F2021&return_date=31%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Atulya\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 18:18:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"09AACCM8579M1ZL\",\"companyname\":\"catpl\",\"gstemail\":\"deepak@catpl.co.in\",\"gstphone\":\"9695357709\",\"gstaddress\":\"noida\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222317\",\"TPSysId\":\"222318\",\"VersionId\":[\"26989\",\"26990\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7741\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"708\"],[\"709\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"366\",\"367\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-18 18:21:03'),(112,'4-9441876623_3BOMDELSG2642_28505641036362367','{\"BookingData\":[{\"bookingId\":\"TJS102100059762\",\"FlightNumber\":\"SG-2642\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-23T16:20\",\"LocalFromTime\":\"2021-03-23 16:20\",\"FromUTCTime\":\"2021-03-23T16:20\",\"LocalToTime\":\"2021-03-23 20:25\",\"ToUTCTime\":\"2021-03-23T20:25\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4123.7,\"PublishedFareTxt\":\"4,124\",\"ApiResultIndex\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":752.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4123.7,\"PublishedFare\":4300.7,\"OfferedFare\":4023.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":752.7,\"BaseFareCal\":4065.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4300.7,\"CostToCustomer\":4300.7,\"BaseFareCal\":4065.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4065.95,\"intOfferedFare\":4023.7,\"intPublishFare\":4123.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"336\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"SG-2642\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"336\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102100059762\",\"FlightNumber\":\"SG-2642\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2021-03-23T16:20\",\"LocalFromTime\":\"2021-03-23 16:20\",\"FromUTCTime\":\"2021-03-23T16:20\",\"LocalToTime\":\"2021-03-23 20:25\",\"ToUTCTime\":\"2021-03-23T20:25\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":245,\"DepartureDateTxt\":\"Tue, 23 Mar\",\"ArrivalDateTxt\":\"Tue, 23 Mar\",\"FlightDuration\":\"4h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4123.7,\"ApiResultIndex\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3371,\"Tax\":752.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4123.7,\"PublishedFare\":4300.7,\"OfferedFare\":4023.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":752.7,\"BaseFareCal\":4065.95,\"BaseFare\":3371,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"336\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-23T20:25\",\"SegFlightNumber\":\"SG-2642\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-23T16:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9441876623_3BOMDELSG2642_28505641036362367\",\"localFromDateTime\":\"2021-03-23 16:20\",\"localToDateTime\":\"2021-03-23 20:25\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"23\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-23\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=23%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh1@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-18 19:08:07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"358\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222356\",\"TPSysId\":\"222357\",\"VersionId\":[\"27004\"],\"CustomerSysId\":\"106620\",\"TrxId\":\"7749\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"714\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"358\",\"CustomerMemSysId\":[\"358\"],\"flight_booking_id\":[\"372\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"ganesh1@catpl.co.in\",\"CustomerSysId\":\"106620\",\"AgencySysId\":\"5293\",\"FirstName\":\"ganesh\",\"LastName\":\"catpl\",\"Password_cu\":\"827ccb0eea8a706c4c34a16891f84e7b\",\"ContactNo1\":\"8585960381\"}}','2021-03-18 19:08:17'),(113,'5-0752493295_0DELBOM6E2077_28562206079233970','{\"BookingData\":[{\"bookingId\":\"TJS106500059792\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":69,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5901.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5666.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5901.7,\"CostToCustomer\":5901.7,\"BaseFareCal\":5666.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":5666.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"341\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"341\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"341\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"341\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"341\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"341\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106500059792\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"strTraceId\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":69,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"ApiResultIndex\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5901.7,\"OfferedFare\":5624.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5666.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"341\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0752493295_0DELBOM6E2077_28562206079233970\",\"localFromDateTime\":\"2021-03-19 22:30\",\"localToDateTime\":\"2021-03-20 00:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ganesh@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8585960381\",\"FirstName\":\"Ganesh\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 10:52:04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"362\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"18AABCU9603R1ZM\",\"companyname\":\"abcdef\",\"gstemail\":\"abcd@gmail.com\",\"gstphone\":\"8585960381\",\"gstaddress\":\"sadd sadv s \",\"gststate\":\"das\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222403\",\"TPSysId\":\"222404\",\"VersionId\":[\"27017\"],\"CustomerSysId\":\"103115\",\"TrxId\":\"7765\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"719\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"362\",\"CustomerMemSysId\":[\"362\"],\"flight_booking_id\":[\"377\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 10:54:16'),(114,'10-3710415267_5DELBOMUK945_28563367765913530,10-3710415267_4BOMDELUK910_28563367727476583','{\"BookingData\":[{\"bookingId\":\"TJS105400059799\",\"FlightNumber\":\"UK-945\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"12:30\",\"ArrivalTime\":\"14:40\",\"TravelDate\":\"2021-03-19T12:30\",\"LocalFromTime\":\"2021-03-19 12:30\",\"FromUTCTime\":\"2021-03-19T12:30\",\"LocalToTime\":\"2021-03-19 14:40\",\"ToUTCTime\":\"2021-03-19T14:40\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4703.7,\"PublishedFareTxt\":\"4,704\",\"ApiResultIndex\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3896,\"Tax\":807.7,\"YQTax\":0,\"OtherCharges\":358,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":202,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":4703.7,\"PublishedFare\":4880.7,\"OfferedFare\":4603.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":807.7,\"BaseFareCal\":4645.95,\"BaseFare\":3896,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":202,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4880.7,\"CostToCustomer\":4880.7,\"BaseFareCal\":4645.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4645.95,\"intOfferedFare\":4603.7,\"intPublishFare\":4703.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"114\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T14:40\",\"SegFlightNumber\":\"UK-945\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T12:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"14:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"114\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-19 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105400059799\",\"FlightNumber\":\"UK-945\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"strTraceId\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"12:30\",\"ArrivalTime\":\"14:40\",\"TravelDate\":\"2021-03-19T12:30\",\"LocalFromTime\":\"2021-03-19 12:30\",\"FromUTCTime\":\"2021-03-19T12:30\",\"LocalToTime\":\"2021-03-19 14:40\",\"ToUTCTime\":\"2021-03-19T14:40\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9636.4,\"ApiResultIndex\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8036,\"Tax\":1600.4,\"YQTax\":0,\"OtherCharges\":689,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":416,\"CarrierMiscFee\":260,\"MUFee\":200,\"intPublishedFare\":9636.4,\"PublishedFare\":9990.4,\"OfferedFare\":9436.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1600.4,\"BaseFareCal\":9520.9,\"BaseFare\":8036,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":416,\"MFT\":5.4,\"OT\":689,\"MU\":200,\"YR\":260,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"114\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T14:40\",\"SegFlightNumber\":\"UK-945\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T12:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:30\",\"strArrivalDtTime\":\"14:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],[{\"segmentid\":\"981\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-19T19:00\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-19T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-3710415267_5DELBOMUK945_28563367765913530\",\"localFromDateTime\":\"2021-03-19 12:30\",\"localToDateTime\":\"2021-03-19 14:40\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS105400059799\",\"FlightNumber\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-3710415267_4BOMDELUK910_28563367727476583\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"19:00\",\"TravelDate\":\"2021-03-19T17:00\",\"LocalFromTime\":\"2021-03-19 17:00\",\"FromUTCTime\":\"2021-03-19T17:00\",\"LocalToTime\":\"2021-03-19 19:00\",\"ToUTCTime\":\"2021-03-19T19:00\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4932.7,\"PublishedFareTxt\":\"4,933\",\"ApiResultIndex\":\"10-3710415267_4BOMDELUK910_28563367727476583\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4140,\"Tax\":792.7,\"YQTax\":0,\"OtherCharges\":331,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":214,\"CarrierMiscFee\":130,\"MUFee\":100,\"intPublishedFare\":4932.7,\"PublishedFare\":5109.7,\"OfferedFare\":4832.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-3710415267_4BOMDELUK910_28563367727476583\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":792.7,\"BaseFareCal\":4874.95,\"BaseFare\":4140,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":214,\"MFT\":2.7,\"OT\":331,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5109.7,\"CostToCustomer\":5109.7,\"BaseFareCal\":4874.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4874.95,\"intOfferedFare\":4832.7,\"intPublishFare\":4932.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"981\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-19T19:00\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-19T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"981\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"10-3710415267_4BOMDELUK910_28563367727476583\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-19 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"19\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"19\\/03\\/2021\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":\"2021-03-19\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=19%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak.catpl@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Up\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 11:20:51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"365\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222426\",\"TPSysId\":\"222427\",\"VersionId\":[\"27028\",\"27029\"],\"CustomerSysId\":\"106515\",\"TrxId\":\"7769\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"724\"],[\"725\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"365\",\"CustomerMemSysId\":[\"365\"],\"flight_booking_id\":[\"382\",\"383\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 11:21:35'),(116,'4-2355667927_1DELBOMSG7177_28563250991241625','{\"BookingData\":[{\"bookingId\":\"TJS109400059802\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"196\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"196\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109400059802\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"196\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2355667927_1DELBOMSG7177_28563250991241625\",\"localFromDateTime\":\"2021-03-19 16:40\",\"localToDateTime\":\"2021-03-19 20:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"ravi\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 11:32:03\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"366\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222437\",\"TPSysId\":\"222438\",\"VersionId\":[\"27030\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7770\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"726\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"366\",\"CustomerMemSysId\":[\"366\"],\"flight_booking_id\":[\"384\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 11:36:23'),(117,'4-1771034981_1DELBOMSG7177_28573462518091262,4-1771034981_1BOMDELSG790_28573462502957050','{\"BookingData\":[{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3384,\"Tax\":687.7,\"YQTax\":0,\"OtherCharges\":395,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4071.7,\"PublishedFare\":4248.7,\"OfferedFare\":3971.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":687.7,\"BaseFareCal\":4013.95,\"BaseFare\":3384,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":395,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4248.7,\"CostToCustomer\":4248.7,\"BaseFareCal\":4013.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4013.95,\"intOfferedFare\":3971.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"221\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF1\",\"Price\":105,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF2\",\"Price\":210,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"BOF3\",\"Price\":315,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"221\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-7177\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2021-03-19T16:40\",\"LocalFromTime\":\"2021-03-19 16:40\",\"FromUTCTime\":\"2021-03-19T16:40\",\"LocalToTime\":\"2021-03-19 20:15\",\"ToUTCTime\":\"2021-03-19T20:15\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":215,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"3h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8352.4,\"ApiResultIndex\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6904,\"Tax\":1448.4,\"YQTax\":0,\"OtherCharges\":856,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":357,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":8352.4,\"PublishedFare\":8706.4,\"OfferedFare\":8152.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1448.4,\"BaseFareCal\":8236.9,\"BaseFare\":6904,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":357,\"MFT\":5.4,\"OT\":856,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"221\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T20:15\",\"SegFlightNumber\":\"SG-7177\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":215,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"3h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"913\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1771034981_1DELBOMSG7177_28573462518091262\",\"localFromDateTime\":\"2021-03-19 16:40\",\"localToDateTime\":\"2021-03-19 20:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS102300059832\",\"FlightNumber\":\"SG-790\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:30\",\"TravelDate\":\"2021-03-25T15:25\",\"LocalFromTime\":\"2021-03-25 15:25\",\"FromUTCTime\":\"2021-03-25T15:25\",\"LocalToTime\":\"2021-03-25 17:30\",\"ToUTCTime\":\"2021-03-25T17:30\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 25 Mar\",\"ArrivalDateTxt\":\"Thu, 25 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4280.7,\"PublishedFareTxt\":\"4,281\",\"ApiResultIndex\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3520,\"Tax\":760.7,\"YQTax\":0,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":182,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":4280.7,\"PublishedFare\":4457.7,\"OfferedFare\":4180.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":760.7,\"BaseFareCal\":4222.95,\"BaseFare\":3520,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":182,\"MFT\":2.7,\"OT\":461,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":4457.7,\"CostToCustomer\":4457.7,\"BaseFareCal\":4222.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":4222.95,\"intOfferedFare\":4180.7,\"intPublishFare\":4280.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"913\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-25T17:30\",\"SegFlightNumber\":\"SG-790\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-25T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:30\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB05\",\"Price\":1900,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB10\",\"Price\":3800,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB15\",\"Price\":5700,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB20\",\"Price\":7600,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"EB30\",\"Price\":11400,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"JNSW\",\"Price\":229,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"JNML\",\"Price\":350,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFVG\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFNV\",\"Price\":350,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"GFCM\",\"Price\":350,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"FPML\",\"Price\":350,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"DNVL\",\"Price\":350,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"DBML\",\"Price\":350,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"913\",\"Code\":\"CHML\",\"Price\":350,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1771034981_1BOMDELSG790_28573462502957050\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-25 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"25\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"25\\/03\\/2021\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":\"2021-03-25\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=25%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 13:58:19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"367\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222552\",\"TPSysId\":\"222553\",\"VersionId\":[],\"CustomerSysId\":\"104941\",\"TrxId\":\"7776\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"727\"],[\"728\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"367\",\"CustomerMemSysId\":[\"367\"],\"flight_booking_id\":[\"385\",\"386\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 13:58:29'),(118,'10-4222073085_0DELBOMUK981_28584842514009237,5-4222073085_1BOMDEL6E2174_28584844639908630','{\"BookingData\":[{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"UK-981\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:30\",\"TravelDate\":\"2021-03-19T21:20\",\"LocalFromTime\":\"2021-03-19 21:20\",\"FromUTCTime\":\"2021-03-19T21:20\",\"LocalToTime\":\"2021-03-19 23:30\",\"ToUTCTime\":\"2021-03-19T23:30\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13021.1,\"PublishedFareTxt\":\"13,021\",\"ApiResultIndex\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10990,\"Tax\":2031.1000000000001,\"YQTax\":0,\"OtherCharges\":716,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":572,\"CarrierMiscFee\":390,\"MUFee\":300,\"intPublishedFare\":13021.1,\"PublishedFare\":13552.1,\"OfferedFare\":12721.1,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":856.7,\"BaseFareCal\":5668.95,\"BaseFare\":4870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":251,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":856.7,\"BaseFareCal\":5668.95,\"BaseFare\":4870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":251,\"MFT\":2.7,\"OT\":358,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":1509.95,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":70,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":130,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0PC\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":13552.1,\"CostToCustomer\":13552.1,\"BaseFareCal\":12847.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":12847.86,\"intOfferedFare\":12721.1,\"intPublishFare\":13021.1,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"590\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:30\",\"SegFlightNumber\":\"UK-981\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"UK-981\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:30\",\"TravelDate\":\"2021-03-19T21:20\",\"LocalFromTime\":\"2021-03-19 21:20\",\"FromUTCTime\":\"2021-03-19T21:20\",\"LocalToTime\":\"2021-03-19 23:30\",\"ToUTCTime\":\"2021-03-19T23:30\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":20744.2,\"ApiResultIndex\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17250,\"Tax\":3494.2000000000003,\"YQTax\":0,\"OtherCharges\":1578,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":820,\"CarrierMiscFee\":390,\"MUFee\":600,\"intPublishedFare\":20744.2,\"PublishedFare\":21806.2,\"OfferedFare\":20144.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":900,\"GSTOnMarkUp\":162,\"CommEarned\":1408.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1529.4,\"BaseFareCal\":8663.9,\"BaseFare\":7250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":375,\"MFT\":5.4,\"OT\":789,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1529.4,\"BaseFareCal\":8663.9,\"BaseFare\":7250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":375,\"MFT\":5.4,\"OT\":789,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":435.4,\"BaseFareCal\":3069.9,\"BaseFare\":2750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":70,\"MFT\":5.4,\"OT\":0,\"MU\":200,\"YR\":130,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"590\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:30\",\"SegFlightNumber\":\"UK-981\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"K\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],[{\"segmentid\":\"999\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"10-4222073085_0DELBOMUK981_28584842514009237\",\"localFromDateTime\":\"2021-03-19 21:20\",\"localToDateTime\":\"2021-03-19 23:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS107000059877\",\"FlightNumber\":\"6E-2174\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:15\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2021-03-27T21:15\",\"LocalFromTime\":\"2021-03-27 21:15\",\"FromUTCTime\":\"2021-03-27T21:15\",\"LocalToTime\":\"2021-03-27 23:20\",\"ToUTCTime\":\"2021-03-27T23:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 27 Mar\",\"ArrivalDateTxt\":\"Sat, 27 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":7723.099999999999,\"PublishedFareTxt\":\"7,723\",\"ApiResultIndex\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6260,\"Tax\":1463.1000000000001,\"YQTax\":0,\"OtherCharges\":862,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":248,\"CarrierMiscFee\":0,\"MUFee\":300,\"intPublishedFare\":7723.099999999999,\"PublishedFare\":8254.1,\"OfferedFare\":7423.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":126.76,\"apiMarkup\":254.24,\"IntCommission\":0,\"apiTaxOnMarkup\":45.76,\"FixedMarkUp\":450,\"GSTOnMarkUp\":81,\"CommEarned\":704.24,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":672.7,\"BaseFareCal\":2994.95,\"BaseFare\":2380,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":672.7,\"BaseFareCal\":2994.95,\"BaseFare\":2380,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":117.7,\"BaseFareCal\":1559.95,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":254.24,\"apiTaxOnMarkup\":45.76,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":450,\"IntTaxOnAgencyFixMarkUp\":81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.76,\"PublishFare\":8254.1,\"CostToCustomer\":8254.1,\"BaseFareCal\":7549.86,\"intCommisionEarnedForAgency\":704.24,\"CostToCompany\":7549.86,\"intOfferedFare\":7423.099999999999,\"intPublishFare\":7723.099999999999,\"TripjackMarkup\":300,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"999\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"999\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4222073085_1BOMDEL6E2174_28584844639908630\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"1\",\"infants\":\"1\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"27\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"1\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"27\\/03\\/2021\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":\"2021-03-27\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=1&infants=1&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=27%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Deepak\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 17:08:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"368\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"RAvi\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 17:08:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"369\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"62\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Lala\",\"LastName\":\"kaka\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":\"2020-03-10\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 17:08:46\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"370\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222664\",\"TPSysId\":\"222665\",\"VersionId\":[\"27099\",\"27100\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7783\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"729\",\"730\",\"731\"],[\"732\",\"733\",\"734\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"368\",\"369\",\"370\"],\"flight_booking_id\":[\"387\",\"388\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 17:08:58'),(119,'5-2514125537_0DELBOM6E2077_28585352341976144,5-2514125537_20BOMDEL6E2174_28585352288983205','{\"BookingData\":[{\"bookingId\":\"TJS105100059884\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":56,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5901.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5666.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5901.7,\"CostToCustomer\":5901.7,\"BaseFareCal\":5666.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":5666.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"489\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":56,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"489\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105100059884\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"strTraceId\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":56,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8777.4,\"ApiResultIndex\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7280,\"Tax\":1497.4,\"YQTax\":0,\"OtherCharges\":888,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":374,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":8777.4,\"PublishedFare\":9131.4,\"OfferedFare\":8577.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1497.4,\"BaseFareCal\":8661.9,\"BaseFare\":7280,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":374,\"MFT\":5.4,\"OT\":888,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"489\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":56,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"859\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":43,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2514125537_0DELBOM6E2077_28585352341976144\",\"localFromDateTime\":\"2021-03-19 22:30\",\"localToDateTime\":\"2021-03-20 00:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS105100059884\",\"FlightNumber\":\"6E-2174\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2514125537_20BOMDEL6E2174_28585352288983205\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:15\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2021-03-27T21:15\",\"LocalFromTime\":\"2021-03-27 21:15\",\"FromUTCTime\":\"2021-03-27T21:15\",\"LocalToTime\":\"2021-03-27 23:20\",\"ToUTCTime\":\"2021-03-27T23:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 27 Mar\",\"ArrivalDateTxt\":\"Sat, 27 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":43,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3052.7,\"PublishedFareTxt\":\"3,053\",\"ApiResultIndex\":\"5-2514125537_20BOMDEL6E2174_28585352288983205\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2380,\"Tax\":672.7,\"YQTax\":0,\"OtherCharges\":431,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":124,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3052.7,\"PublishedFare\":3229.7,\"OfferedFare\":2952.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2514125537_20BOMDEL6E2174_28585352288983205\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":672.7,\"BaseFareCal\":2994.95,\"BaseFare\":2380,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":124,\"MFT\":2.7,\"OT\":431,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":3229.7,\"CostToCustomer\":3229.7,\"BaseFareCal\":2994.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":2994.95,\"intOfferedFare\":2952.7,\"intPublishFare\":3052.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"859\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-27T23:20\",\"SegFlightNumber\":\"6E-2174\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-27T21:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":43,\"strDepartureDtTime\":\"21:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"859\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2514125537_20BOMDEL6E2174_28585352288983205\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-27 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"27\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"27\\/03\\/2021\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":\"2021-03-27\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=27%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"A1\",\"LastName\":\"K1\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 17:16:28\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"371\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"09AACCM8579M1ZL\",\"companyname\":\"catpl\",\"gstemail\":\"deepak@catpl.co.in\",\"gstphone\":\"9695357709\",\"gstaddress\":\"noida\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222668\",\"TPSysId\":\"222669\",\"VersionId\":[\"27101\",\"27102\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7784\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"735\"],[\"736\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"371\",\"CustomerMemSysId\":[\"371\"],\"flight_booking_id\":[\"389\",\"390\"]},\"selectedSeatSession\":null,\"_sessiondata\":{\"EmailId\":\"deepak@catpl.co.in \",\"CustomerSysId\":\"104941\",\"AgencySysId\":\"5293\",\"FirstName\":\"Deepak \",\"LastName\":\"Kumar \",\"Password_cu\":\"202cb962ac59075b964b07152d234b70\",\"ContactNo1\":\"9695357709\"}}','2021-03-19 17:17:29'),(120,'5-5995704032_0DELBOM6E2077_28591238883643781,5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386','{\"BookingData\":[{\"bookingId\":\"TJS109100059913\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":34,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5724.7,\"PublishedFareTxt\":\"5,725\",\"ApiResultIndex\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":824.7,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":5724.7,\"PublishedFare\":5901.7,\"OfferedFare\":5624.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":824.7,\"BaseFareCal\":5666.95,\"BaseFare\":4900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":457,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":5901.7,\"CostToCustomer\":5901.7,\"BaseFareCal\":5666.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":5666.95,\"intOfferedFare\":5624.7,\"intPublishFare\":5724.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"099\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":34,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"099\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"099\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"099\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"099\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"099\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109100059913\",\"FlightNumber\":\"6E-2077\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"strTraceId\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:30\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2021-03-19T22:30\",\"LocalFromTime\":\"2021-03-19 22:30\",\"FromUTCTime\":\"2021-03-19T22:30\",\"LocalToTime\":\"2021-03-20 00:50\",\"ToUTCTime\":\"2021-03-20T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Sat, 20 Mar\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":34,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8725.4,\"ApiResultIndex\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7180,\"Tax\":1545.4,\"YQTax\":0,\"OtherCharges\":938,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":372,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":8725.4,\"PublishedFare\":9079.4,\"OfferedFare\":8525.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1545.4,\"BaseFareCal\":8609.9,\"BaseFare\":7180,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":372,\"MFT\":5.4,\"OT\":938,\"MU\":200,\"YR\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":469.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"099\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-20T00:50\",\"SegFlightNumber\":\"6E-2077\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T22:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":34,\"strDepartureDtTime\":\"22:30\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"564\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-03-31T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-31T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"941\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-31T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-03-31T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5995704032_0DELBOM6E2077_28591238883643781\",\"localFromDateTime\":\"2021-03-19 22:30\",\"localToDateTime\":\"2021-03-20 00:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJS109100059913\",\"FlightNumber\":\"6E-918\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:10\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2021-03-31T11:10\",\"LocalFromTime\":\"2021-03-31 11:10\",\"FromUTCTime\":\"2021-03-31T11:10\",\"LocalToTime\":\"2021-03-31 16:10\",\"ToUTCTime\":\"2021-03-31T16:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Jodhpur\",\"GroundTime\":135,\"LAYOVERDuration\":\"2h 15m\",\"FlyingMinutes\":300,\"DepartureDateTxt\":\"Wed, 31 Mar\",\"ArrivalDateTxt\":\"Wed, 31 Mar\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":17,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3000.7,\"PublishedFareTxt\":\"3,001\",\"ApiResultIndex\":\"5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2280,\"Tax\":720.7,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":122,\"CarrierMiscFee\":0,\"MUFee\":100,\"intPublishedFare\":3000.7,\"PublishedFare\":3177.7,\"OfferedFare\":2900.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":720.7,\"BaseFareCal\":2942.95,\"BaseFare\":2280,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":122,\"MFT\":2.7,\"OT\":481,\"MU\":100,\"YR\":0,\"intTotalGST\":42.25,\"apiMarkup\":84.75,\"IntCommission\":0,\"apiTaxOnMarkup\":15.25,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":234.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":84.75,\"apiTaxOnMarkup\":15.25,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":10,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.25,\"PublishFare\":3177.7,\"CostToCustomer\":3177.7,\"BaseFareCal\":2942.95,\"intCommisionEarnedForAgency\":234.75,\"CostToCompany\":2942.95,\"intOfferedFare\":2900.7,\"intPublishFare\":3000.7,\"TripjackMarkup\":100,\"TripjackCommission\":0,\"TripjackTDS\":\"0\"}},\"Segments\":[{\"segmentid\":\"564\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jodhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jodhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JDH\",\"destinationArrTime\":\"2021-03-31T12:45\",\"SegFlightNumber\":\"6E-918\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-31T11:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":135,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"11:10\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"2h 15m\",\"LAYOVERCity\":\"Jodhpur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"941\",\"originAirportName\":\"Jodhpur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jodhpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-31T16:10\",\"SegFlightNumber\":\"6E-6685\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"JDH\",\"originDepTime\":\"2021-03-31T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":17,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"http:\\/\\/ineedtrip.hellogtx.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"564\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"564\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"564\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"564\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"564\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5995704032_27BOMJDH6E918JDHDEL6E6685_28591238826642386\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"2021-03-31 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"31\\/03\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"31\\/03\\/2021\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":\"2021-03-31\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=31%2F03%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Atulya\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 18:54:36\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"09AACCM8579M1ZL\",\"companyname\":\"Catpl\",\"gstemail\":\"deepak@catpl.co.in\",\"gstphone\":\"9695357709\",\"gstaddress\":\"Noida\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222740\",\"TPSysId\":\"222741\",\"VersionId\":[\"27120\",\"27121\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7788\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"737\"],[\"738\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"391\",\"392\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 18:56:30'),(121,'15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784','{\"BookingData\":[{\"bookingId\":\"TJ105108775047\",\"FlightNumber\":\"AI-9691\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"11:50\",\"ArrivalTime\":\"15:20\",\"TravelDate\":\"2021-05-03T11:50\",\"LocalFromTime\":\"2021-05-03 11:50\",\"FromUTCTime\":\"2021-05-03T11:50\",\"LocalToTime\":\"2021-05-03 15:20\",\"ToUTCTime\":\"2021-05-03T15:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Jabalpur\",\"GroundTime\":30,\"LAYOVERDuration\":\"0h 30m\",\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 03 May\",\"ArrivalDateTxt\":\"Mon, 03 May\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"3212\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4111,\"PublishedFareTxt\":\"4,111\",\"ApiResultIndex\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3300,\"Tax\":811,\"YQTax\":0,\"OtherCharges\":358,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":178,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":4111,\"PublishedFare\":4230.83,\"OfferedFare\":4047.48,\"CommissionEarned\":63.52,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":6.35,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":156.35,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":811,\"BaseFareCal\":4074.48,\"BaseFare\":3300,\"CommissionEarned\":63.52,\"TDS\":-2.48,\"MF\":21.19,\"YQ\":0,\"AGST\":178,\"MFT\":3.81,\"OT\":358,\"MU\":0,\"YR\":250,\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":6.35,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":156.35,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":63.52,\"IntCommissionValInPercentage\":10,\"IntCommission\":6.35,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27,\"PublishFare\":4230.83,\"CostToCustomer\":4230.83,\"BaseFareCal\":4074.48,\"intCommisionEarnedForAgency\":156.35,\"CostToCompany\":4074.48,\"intOfferedFare\":4047.48,\"intPublishFare\":4111,\"TripjackMarkup\":0,\"TripjackCommission\":63.52,\"TripjackTDS\":\"2.48\"}},\"Segments\":[{\"segmentid\":\"583\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jabalpur Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jabalpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JLR\",\"destinationArrTime\":\"2021-05-03T13:50\",\"SegFlightNumber\":\"AI-9691\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-03T11:50\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":30,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:50\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"0h 30m\",\"LAYOVERCity\":\"Jabalpur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"286\",\"originAirportName\":\"Jabalpur Airport\",\"destinationAirportName\":\"Bilaspur Airport\",\"originCityName\":\"Jabalpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bilaspur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAB\",\"destinationArrTime\":\"2021-05-03T15:20\",\"SegFlightNumber\":\"AI-9691\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"JLR\",\"originDepTime\":\"2021-05-03T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-05-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAB\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"3212\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105108775047\",\"FlightNumber\":\"AI-9691\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"strTraceId\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"11:50\",\"ArrivalTime\":\"15:20\",\"TravelDate\":\"2021-05-03T11:50\",\"LocalFromTime\":\"2021-05-03 11:50\",\"FromUTCTime\":\"2021-05-03T11:50\",\"LocalToTime\":\"2021-05-03 15:20\",\"ToUTCTime\":\"2021-05-03T15:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Jabalpur\",\"GroundTime\":30,\"LAYOVERDuration\":\"0h 30m\",\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 03 May\",\"ArrivalDateTxt\":\"Mon, 03 May\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"3212\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4111,\"ApiResultIndex\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3300,\"Tax\":811,\"YQTax\":0,\"OtherCharges\":358,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":178,\"CarrierMiscFee\":250,\"MUFee\":0,\"intPublishedFare\":4111,\"PublishedFare\":4230.83,\"OfferedFare\":4047.48,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":156.35,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":811,\"BaseFareCal\":4074.48,\"BaseFare\":3300,\"CommissionEarned\":63.52,\"TDS\":-2.48,\"MF\":21.19,\"YQ\":0,\"AGST\":178,\"MFT\":3.81,\"OT\":358,\"MU\":0,\"YR\":250,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":156.35,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"583\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jabalpur Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jabalpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JLR\",\"destinationArrTime\":\"2021-05-03T13:50\",\"SegFlightNumber\":\"AI-9691\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-05-03T11:50\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":30,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:50\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"0h 30m\",\"LAYOVERCity\":\"Jabalpur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"286\",\"originAirportName\":\"Jabalpur Airport\",\"destinationAirportName\":\"Bilaspur Airport\",\"originCityName\":\"Jabalpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bilaspur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAB\",\"destinationArrTime\":\"2021-05-03T15:20\",\"SegFlightNumber\":\"AI-9691\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"JLR\",\"originDepTime\":\"2021-05-03T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-0740684866_0DELJLRAI9691JLRPABAI9691_36751101261784\",\"localFromDateTime\":\"2021-05-03 11:50\",\"localToDateTime\":\"2021-05-03 15:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAB\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"3212\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Bilaspur (PAB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"PAB\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Bilaspur, IN - Bilaspur Airport (PAB)\",\"departure_date\":\"03\\/05\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Bilaspur Airport (PAB)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"PAB\",\"from\":\"DEL\",\"to\":\"PAB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Bilaspur, IN - Bilaspur Airport (PAB)\",\"sourceCityId\":7701,\"destinationCityId\":3212,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/05\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-05-03\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Bilaspur+%28PAB%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=PAB&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Bilaspur%2C+IN+-+Bilaspur+Airport+%28PAB%29&departure_date=03%2F05%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Bilaspur+Airport+%28PAB%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"sudipta@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9818999760\",\"FirstName\":\"Sudipta\",\"LastName\":\"Banerjee\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"sfsafsaf\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 19:13:48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"372\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222751\",\"TPSysId\":\"222752\",\"VersionId\":[\"27124\"],\"CustomerSysId\":\"103022\",\"TrxId\":\"7789\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"739\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"372\",\"CustomerMemSysId\":[\"372\"],\"flight_booking_id\":[\"393\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 19:14:00'),(122,'5-3082819678_1DELBOM6E2068_326964066076218','{\"BookingData\":[{\"bookingId\":\"TJ102308775241\",\"FlightNumber\":\"6E-2068\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:00\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-03-19T21:00\",\"LocalFromTime\":\"2021-03-19 21:00\",\"FromUTCTime\":\"2021-03-19T21:00\",\"LocalToTime\":\"2021-03-19 23:05\",\"ToUTCTime\":\"2021-03-19T23:05\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":32,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5632,\"PublishedFareTxt\":\"5,632\",\"ApiResultIndex\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":732,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5632,\"PublishedFare\":5775.04,\"OfferedFare\":5594.27,\"CommissionEarned\":37.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.47,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.77,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":732,\"BaseFareCal\":5621.27,\"BaseFare\":4900,\"CommissionEarned\":37.73,\"TDS\":-1.47,\"MF\":21.19,\"YQ\":0,\"AGST\":250,\"MFT\":3.81,\"OT\":457,\"MU\":0,\"YR\":0,\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.77,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":37.73,\"IntCommissionValInPercentage\":10,\"IntCommission\":3.77,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27,\"PublishFare\":5775.04,\"CostToCustomer\":5775.04,\"BaseFareCal\":5621.27,\"intCommisionEarnedForAgency\":153.77,\"CostToCompany\":5621.27,\"intOfferedFare\":5594.27,\"intPublishFare\":5632,\"TripjackMarkup\":0,\"TripjackCommission\":37.73,\"TripjackTDS\":\"1.47\"}},\"Segments\":[{\"segmentid\":\"918\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:05\",\"SegFlightNumber\":\"6E-2068\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":32,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102308775241\",\"FlightNumber\":\"6E-2068\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"strTraceId\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:00\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-03-19T21:00\",\"LocalFromTime\":\"2021-03-19 21:00\",\"FromUTCTime\":\"2021-03-19T21:00\",\"LocalToTime\":\"2021-03-19 23:05\",\"ToUTCTime\":\"2021-03-19T23:05\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Mar\",\"ArrivalDateTxt\":\"Fri, 19 Mar\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":32,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5632,\"ApiResultIndex\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":732,\"YQTax\":0,\"OtherCharges\":457,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5632,\"PublishedFare\":5775.04,\"OfferedFare\":5594.27,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":732,\"BaseFareCal\":5621.27,\"BaseFare\":4900,\"CommissionEarned\":37.73,\"TDS\":-1.47,\"MF\":21.19,\"YQ\":0,\"AGST\":250,\"MFT\":3.81,\"OT\":457,\"MU\":0,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"918\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-03-19T23:05\",\"SegFlightNumber\":\"6E-2068\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-19T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":32,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3082819678_1DELBOM6E2068_326964066076218\",\"localFromDateTime\":\"2021-03-19 21:00\",\"localToDateTime\":\"2021-03-19 23:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"19\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-19\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=19%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"deepak@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9695357709\",\"FirstName\":\"Atulya\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 19:18:57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"09AACCM8579M1ZL\",\"companyname\":\"catpl\",\"gstemail\":\"deepak@catpl.co.in\",\"gstphone\":\"9695357709\",\"gstaddress\":\"noida\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222753\",\"TPSysId\":\"222754\",\"VersionId\":[\"27125\"],\"CustomerSysId\":\"104941\",\"TrxId\":\"7790\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"740\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"394\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 19:19:33'),(123,'4-2301243350_1DELBOMSG8723_38951715837960','{\"BookingData\":[{\"bookingId\":\"TJ105908776716\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:00\",\"TravelDate\":\"2021-04-13T08:50\",\"LocalFromTime\":\"2021-04-13 08:50\",\"FromUTCTime\":\"2021-04-13T08:50\",\"LocalToTime\":\"2021-04-13 11:00\",\"ToUTCTime\":\"2021-04-13T11:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 13 Apr\",\"ArrivalDateTxt\":\"Tue, 13 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2537,\"PublishedFareTxt\":\"2,537\",\"ApiResultIndex\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1927,\"Tax\":610,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2537,\"PublishedFare\":2684.79,\"OfferedFare\":2504.54,\"CommissionEarned\":32.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":610,\"BaseFareCal\":2531.54,\"BaseFare\":1927,\"CommissionEarned\":32.46,\"TDS\":-1.26,\"MF\":21.19,\"YQ\":0,\"AGST\":102,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":3.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":32.46,\"IntCommissionValInPercentage\":10,\"IntCommission\":3.25,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27,\"PublishFare\":2684.79,\"CostToCustomer\":2684.79,\"BaseFareCal\":2531.54,\"intCommisionEarnedForAgency\":153.25,\"CostToCompany\":2531.54,\"intOfferedFare\":2504.54,\"intPublishFare\":2537,\"TripjackMarkup\":0,\"TripjackCommission\":32.46,\"TripjackTDS\":\"1.26\"}},\"Segments\":[{\"segmentid\":\"020\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-13T11:00\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-13T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"EB05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"EB10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"EB15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"EB20\",\"Price\":8000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"EB30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"020\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-13 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105908776716\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"strTraceId\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:00\",\"TravelDate\":\"2021-04-13T08:50\",\"LocalFromTime\":\"2021-04-13 08:50\",\"FromUTCTime\":\"2021-04-13T08:50\",\"LocalToTime\":\"2021-04-13 11:00\",\"ToUTCTime\":\"2021-04-13T11:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 13 Apr\",\"ArrivalDateTxt\":\"Tue, 13 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2537,\"ApiResultIndex\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1927,\"Tax\":610,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2537,\"PublishedFare\":2684.79,\"OfferedFare\":2504.54,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":610,\"BaseFareCal\":2531.54,\"BaseFare\":1927,\"CommissionEarned\":32.46,\"TDS\":-1.26,\"MF\":21.19,\"YQ\":0,\"AGST\":102,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":153.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"020\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-13T11:00\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-13T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2301243350_1DELBOMSG8723_38951715837960\",\"localFromDateTime\":\"2021-04-13 08:50\",\"localToDateTime\":\"2021-04-13 11:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"departure_date\":\"13\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"13\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-13\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&departure_date=13%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"ancd@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7072253698\",\"FirstName\":\"GANESH\",\"LastName\":\"Kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"noida\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-19 19:51:12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"102\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"222767\",\"TPSysId\":\"222768\",\"VersionId\":[],\"CustomerSysId\":\"106863\",\"TrxId\":\"7791\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"741\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"102\",\"CustomerMemSysId\":[\"102\"],\"flight_booking_id\":[\"395\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-19 19:52:31'),(124,'1-2170632972_1DELGOIG8194_13657340435244,1-2170632972_1GOIDELG8195_13657333012608','{\"BookingData\":[{\"bookingId\":\"TJ106708878340\",\"FlightNumber\":\"G8-194\",\"AirlineName\":\"Go Air\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"20:15\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-04-05T20:15\",\"LocalFromTime\":\"2021-04-05 20:15\",\"FromUTCTime\":\"2021-04-05T20:15\",\"LocalToTime\":\"2021-04-05 23:05\",\"ToUTCTime\":\"2021-04-05T23:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5109,\"PublishedFareTxt\":\"5,109\",\"ApiResultIndex\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3639,\"Tax\":1470,\"YQTax\":750,\"OtherCharges\":469,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":226,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5109,\"PublishedFare\":5054.52,\"OfferedFare\":5000.04,\"CommissionEarned\":108.96,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.24,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":54.48,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":54.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1470,\"BaseFareCal\":5000.04,\"BaseFare\":3639,\"CommissionEarned\":108.96,\"TDS\":-4.24,\"MF\":21.19,\"YQ\":750,\"AGST\":226,\"MFT\":3.81,\"OT\":469,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":54.48,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":54.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":108.96,\"IntCommissionValInPercentage\":50,\"IntCommission\":54.48,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":5054.52,\"CostToCustomer\":5054.52,\"BaseFareCal\":5000.04,\"intCommisionEarnedForAgency\":54.48,\"CostToCompany\":5000.04,\"intOfferedFare\":5000.04,\"intPublishFare\":5109,\"TripjackMarkup\":0,\"TripjackCommission\":108.96,\"TripjackTDS\":\"4.24\"}},\"Segments\":[{\"segmentid\":\"319\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-04-05T23:05\",\"SegFlightNumber\":\"G8-194\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-05T20:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:15\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"XC05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"XC10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"XC15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"XC30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"319\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-05 12:00\",\"localToDateTime\":\"2021-04-08 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106708878340\",\"FlightNumber\":\"G8-194\",\"AirlineName\":\"Go Air\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"strTraceId\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"20:15\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2021-04-05T20:15\",\"LocalFromTime\":\"2021-04-05 20:15\",\"FromUTCTime\":\"2021-04-05T20:15\",\"LocalToTime\":\"2021-04-05 23:05\",\"ToUTCTime\":\"2021-04-05T23:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Mon, 05 Apr\",\"ArrivalDateTxt\":\"Mon, 05 Apr\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10140,\"ApiResultIndex\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7004,\"Tax\":3136,\"YQTax\":1500,\"OtherCharges\":1148,\"Discount\":0,\"ServiceFee\":42.38,\"ManagementFeeTax\":7.62,\"AirlineGSTComponent\":438,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10140,\"PublishedFare\":10033.87,\"OfferedFare\":9927.73,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":106.13999999999999,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3136,\"BaseFareCal\":9927.73,\"BaseFare\":7004,\"CommissionEarned\":212.26999999999998,\"TDS\":-8.26,\"MF\":42.38,\"YQ\":1500,\"AGST\":438,\"MFT\":7.62,\"OT\":1148,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":106.13999999999999,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"319\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-04-05T23:05\",\"SegFlightNumber\":\"G8-194\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-05T20:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:15\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"547\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-09T02:20\",\"SegFlightNumber\":\"G8-195\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-04-08T23:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"23:35\",\"strArrivalDtTime\":\"02:20\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2170632972_1DELGOIG8194_13657340435244\",\"localFromDateTime\":\"2021-04-05 20:15\",\"localToDateTime\":\"2021-04-05 23:05\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ106708878340\",\"FlightNumber\":\"G8-195\",\"AirlineName\":\"Go Air\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2170632972_1GOIDELG8195_13657333012608\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"23:35\",\"ArrivalTime\":\"02:20\",\"TravelDate\":\"2021-04-08T23:35\",\"LocalFromTime\":\"2021-04-08 23:35\",\"FromUTCTime\":\"2021-04-08T23:35\",\"LocalToTime\":\"2021-04-09 02:20\",\"ToUTCTime\":\"2021-04-09T02:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Thu, 08 Apr\",\"ArrivalDateTxt\":\"Fri, 09 Apr\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5031,\"PublishedFareTxt\":\"5,031\",\"ApiResultIndex\":\"1-2170632972_1GOIDELG8195_13657333012608\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3365,\"Tax\":1666,\"YQTax\":750,\"OtherCharges\":679,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":212,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5031,\"PublishedFare\":4979.35,\"OfferedFare\":4927.69,\"CommissionEarned\":103.31,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.02,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2170632972_1GOIDELG8195_13657333012608\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":51.66,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":51.66,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1666,\"BaseFareCal\":4927.69,\"BaseFare\":3365,\"CommissionEarned\":103.31,\"TDS\":-4.02,\"MF\":21.19,\"YQ\":750,\"AGST\":212,\"MFT\":3.81,\"OT\":679,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":51.66,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":51.66,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":103.31,\"IntCommissionValInPercentage\":50,\"IntCommission\":51.66,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4979.35,\"CostToCustomer\":4979.35,\"BaseFareCal\":4927.69,\"intCommisionEarnedForAgency\":51.66,\"CostToCompany\":4927.69,\"intOfferedFare\":4927.69,\"intPublishFare\":5031,\"TripjackMarkup\":0,\"TripjackCommission\":103.31,\"TripjackTDS\":\"4.02\"}},\"Segments\":[{\"segmentid\":\"547\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-09T02:20\",\"SegFlightNumber\":\"G8-195\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-04-08T23:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"23:35\",\"strArrivalDtTime\":\"02:20\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"http:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"XC05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"XC10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"XC15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"XC30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"547\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2170632972_1GOIDELG8195_13657333012608\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-05 12:00\",\"localToDateTime\":\"2021-04-08 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"DirectFlight\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"departure_date\":\"05\\/04\\/2021\",\"return_date\":\"08\\/04\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/04\\/2021\",\"return_dates\":\"08\\/04\\/2021\",\"strDepatureDate\":\"2021-04-05\",\"strReturnDate\":\"2021-04-08\"},\"FlightSearchUrl\":\"route=2&DirectFlight=1&DirectFlight=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Goa+In+%28GOI%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29&departure_date=05%2F04%2F2021&return_date=08%2F04%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"gpurwar@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9811192312\",\"FirstName\":\"GAURAV\",\"LastName\":\"GUPTA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-22 11:52:28\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"103\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"223020\",\"TPSysId\":\"223021\",\"VersionId\":[\"27207\",\"27208\"],\"CustomerSysId\":\"106963\",\"TrxId\":\"7823\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"745\"],[\"746\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"103\",\"CustomerMemSysId\":[\"103\"],\"flight_booking_id\":[\"399\",\"400\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-22 11:53:02'),(125,'1-7012619301_0DELGOIG8300_19403683051304,5-7012619301_23GOIDEL6E5178_19405731714857','{\"BookingData\":[{\"bookingId\":\"TJ107809038998\",\"FlightNumber\":\"G8-300\",\"AirlineName\":\"Go Air\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"11:30\",\"TravelDate\":\"2021-03-28T08:40\",\"LocalFromTime\":\"2021-03-28 08:40\",\"FromUTCTime\":\"2021-03-28T08:40\",\"LocalToTime\":\"2021-03-28 11:30\",\"ToUTCTime\":\"2021-03-28T11:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sun, 28 Mar\",\"ArrivalDateTxt\":\"Sun, 28 Mar\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":20679,\"PublishedFareTxt\":\"20,679\",\"ApiResultIndex\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16017,\"Tax\":4662,\"YQTax\":2250,\"OtherCharges\":1407,\"Discount\":0,\"ServiceFee\":63.57000000000001,\"ManagementFeeTax\":11.43,\"AirlineGSTComponent\":930,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20679,\"PublishedFare\":20453.6,\"OfferedFare\":20228.19,\"CommissionEarned\":450.81000000000006,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.549999999999997,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":225.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":225.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3108,\"BaseFareCal\":13485.46,\"BaseFare\":10678,\"CommissionEarned\":300.54,\"TDS\":-11.7,\"MF\":42.38,\"YQ\":1500,\"AGST\":620,\"MFT\":7.62,\"OT\":938,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":150.27,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":150.27,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg + 5 Kg Additional\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1554,\"BaseFareCal\":6742.73,\"BaseFare\":5339,\"CommissionEarned\":150.27,\"TDS\":-5.85,\"MF\":21.19,\"YQ\":750,\"AGST\":310,\"MFT\":3.81,\"OT\":469,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":75.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":75.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg + 5 Kg Additional\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":450.81,\"IntCommissionValInPercentage\":50,\"IntCommission\":225.41,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":20453.6,\"CostToCustomer\":20453.6,\"BaseFareCal\":20228.19,\"intCommisionEarnedForAgency\":225.41,\"CostToCompany\":20228.19,\"intOfferedFare\":20228.19,\"intPublishFare\":20679,\"TripjackMarkup\":0,\"TripjackCommission\":450.81000000000006,\"TripjackTDS\":\"17.55\"}},\"Segments\":[{\"segmentid\":\"819\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-03-28T11:30\",\"SegFlightNumber\":\"G8-300\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-28T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg + 5 Kg Additional\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"11:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"XC05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"XC10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"XC15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"XC30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"819\",\"Code\":\"FEST\",\"Price\":499,\"Description\":\"Festive meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-28 12:00\",\"localToDateTime\":\"2021-04-02 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107809038998\",\"FlightNumber\":\"G8-300\",\"AirlineName\":\"Go Air\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"strTraceId\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:40\",\"ArrivalTime\":\"11:30\",\"TravelDate\":\"2021-03-28T08:40\",\"LocalFromTime\":\"2021-03-28 08:40\",\"FromUTCTime\":\"2021-03-28T08:40\",\"LocalToTime\":\"2021-03-28 11:30\",\"ToUTCTime\":\"2021-03-28T11:30\",\"IsDirect\":0,\"FareClass\":\"GS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sun, 28 Mar\",\"ArrivalDateTxt\":\"Sun, 28 Mar\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":35304,\"ApiResultIndex\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":28020,\"Tax\":7284,\"YQTax\":2250,\"OtherCharges\":3339,\"Discount\":0,\"ServiceFee\":127.14000000000001,\"ManagementFeeTax\":22.86,\"AirlineGSTComponent\":1545,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":35304,\"PublishedFare\":35032.39,\"OfferedFare\":34760.759999999995,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":271.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":4856,\"BaseFareCal\":23173.839999999997,\"BaseFare\":18680,\"CommissionEarned\":362.16,\"TDS\":-14.1,\"MF\":84.76,\"YQ\":1500,\"AGST\":1030,\"MFT\":15.24,\"OT\":2226,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":181.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":2428,\"BaseFareCal\":11586.919999999998,\"BaseFare\":9340,\"CommissionEarned\":181.08,\"TDS\":-7.05,\"MF\":42.38,\"YQ\":750,\"AGST\":515,\"MFT\":7.62,\"OT\":1113,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":90.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"819\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-03-28T11:30\",\"SegFlightNumber\":\"G8-300\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go Air\",\"FareClass\":\"GS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-03-28T08:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg + 5 Kg Additional\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:40\",\"strArrivalDtTime\":\"11:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"524\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-03T00:45\",\"SegFlightNumber\":\"6E-5178\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-04-02T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"00:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-7012619301_0DELGOIG8300_19403683051304\",\"localFromDateTime\":\"2021-03-28 08:40\",\"localToDateTime\":\"2021-03-28 11:30\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ107809038998\",\"FlightNumber\":\"6E-5178\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7012619301_23GOIDEL6E5178_19405731714857\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"00:45\",\"TravelDate\":\"2021-04-02T22:05\",\"LocalFromTime\":\"2021-04-02 22:05\",\"FromUTCTime\":\"2021-04-02T22:05\",\"LocalToTime\":\"2021-04-03 00:45\",\"ToUTCTime\":\"2021-04-03T00:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 02 Apr\",\"ArrivalDateTxt\":\"Sat, 03 Apr\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":14625,\"PublishedFareTxt\":\"14,625\",\"ApiResultIndex\":\"5-7012619301_23GOIDEL6E5178_19405731714857\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12003,\"Tax\":2622,\"YQTax\":0,\"OtherCharges\":1932,\"Discount\":0,\"ServiceFee\":63.57000000000001,\"ManagementFeeTax\":11.43,\"AirlineGSTComponent\":615,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14625,\"PublishedFare\":14578.79,\"OfferedFare\":14532.57,\"CommissionEarned\":92.42999999999999,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.5999999999999996,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7012619301_23GOIDEL6E5178_19405731714857\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":46.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":46.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1748,\"BaseFareCal\":9688.38,\"BaseFare\":8002,\"CommissionEarned\":61.62,\"TDS\":-2.4,\"MF\":42.38,\"YQ\":0,\"AGST\":410,\"MFT\":7.62,\"OT\":1288,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":30.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":30.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":874,\"BaseFareCal\":4844.19,\"BaseFare\":4001,\"CommissionEarned\":30.81,\"TDS\":-1.2,\"MF\":21.19,\"YQ\":0,\"AGST\":205,\"MFT\":3.81,\"OT\":644,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":15.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":15.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":92.43,\"IntCommissionValInPercentage\":50,\"IntCommission\":46.22,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":14578.79,\"CostToCustomer\":14578.79,\"BaseFareCal\":14532.57,\"intCommisionEarnedForAgency\":46.22,\"CostToCompany\":14532.57,\"intOfferedFare\":14532.57,\"intPublishFare\":14625,\"TripjackMarkup\":0,\"TripjackCommission\":92.42999999999999,\"TripjackTDS\":\"3.6\"}},\"Segments\":[{\"segmentid\":\"524\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-04-03T00:45\",\"SegFlightNumber\":\"6E-5178\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2021-04-02T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"00:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPJ\",\"Price\":8000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"MUYO\",\"Price\":225,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"COMI\",\"Price\":225,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"TCSW\",\"Price\":350,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PTSW\",\"Price\":350,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"CTSW\",\"Price\":375,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"CJSW\",\"Price\":375,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"CHCT\",\"Price\":375,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"VGTR\",\"Price\":450,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PITA\",\"Price\":450,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"NVTR\",\"Price\":450,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7012619301_23GOIDEL6E5178_19405731714857\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-28 12:00\",\"localToDateTime\":\"2021-04-02 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":3,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"departure_date\":\"28\\/03\\/2021\",\"return_date\":\"02\\/04\\/2021\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"28\\/03\\/2021\",\"return_dates\":\"02\\/04\\/2021\",\"strDepatureDate\":\"2021-03-28\",\"strReturnDate\":\"2021-04-02\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Goa+In+%28GOI%29&adults=2&childs=1&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29&departure_date=28%2F03%2F2021&return_date=02%2F04%2F2021&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"gagasingh@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8588866554\",\"FirstName\":\"GAGAN DEEP SINGH\",\"LastName\":\"BHATIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-25 13:54:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"106\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"106\",\"EmailId\":\"gagasingh@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8588866554\",\"FirstName\":\"PRIYANKA\",\"LastName\":\"RAI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-25 13:54:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"378\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"106\",\"EmailId\":\"gagasingh@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8588866554\",\"FirstName\":\"SUKHLEEN\",\"LastName\":\"BHATIA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-25 13:54:55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"379\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"224050\",\"TPSysId\":\"224051\",\"VersionId\":[\"27547\",\"27548\"],\"CustomerSysId\":\"99280\",\"TrxId\":\"7893\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"757\",\"758\",\"759\"],[\"760\",\"761\",\"762\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"106\",\"CustomerMemSysId\":[\"106\",\"378\",\"379\"],\"flight_booking_id\":[\"408\",\"409\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-25 13:56:51'),(126,'4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962','{\"BookingData\":[{\"bookingId\":\"TJ109009046490\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2021-04-21T08:50\",\"LocalFromTime\":\"2021-04-21 08:50\",\"FromUTCTime\":\"2021-04-21T08:50\",\"LocalToTime\":\"2021-04-21 17:05\",\"ToUTCTime\":\"2021-04-21T17:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":275,\"LAYOVERDuration\":\"4h 35m\",\"FlyingMinutes\":495,\"DepartureDateTxt\":\"Wed, 21 Apr\",\"ArrivalDateTxt\":\"Wed, 21 Apr\",\"FlightDuration\":\"8h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":75,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4438,\"PublishedFareTxt\":\"4,438\",\"ApiResultIndex\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3738,\"Tax\":700,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4438,\"PublishedFare\":4406.52,\"OfferedFare\":4375.03,\"CommissionEarned\":62.97,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.45,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":31.49,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":31.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":700,\"BaseFareCal\":4375.03,\"BaseFare\":3738,\"CommissionEarned\":62.97,\"TDS\":-2.45,\"MF\":21.19,\"YQ\":0,\"AGST\":192,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":31.49,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":31.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":62.97,\"IntCommissionValInPercentage\":50,\"IntCommission\":31.49,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4406.52,\"CostToCustomer\":4406.52,\"BaseFareCal\":4375.03,\"intCommisionEarnedForAgency\":31.49,\"CostToCompany\":4375.03,\"intOfferedFare\":4375.03,\"intPublishFare\":4438,\"TripjackMarkup\":0,\"TripjackCommission\":62.97,\"TripjackTDS\":\"2.45\"}},\"Segments\":[{\"segmentid\":\"640\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-21T11:00\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-21T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":275,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"4h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"306\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-04-21T17:05\",\"SegFlightNumber\":\"SG-455\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-21T15:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"15:35\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB05\",\"Price\":2000,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB10\",\"Price\":4000,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB15\",\"Price\":6000,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB20\",\"Price\":8000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB30\",\"Price\":12000,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-04-21 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109009046490\",\"FlightNumber\":\"SG-8723\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"strTraceId\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2021-04-21T08:50\",\"LocalFromTime\":\"2021-04-21 08:50\",\"FromUTCTime\":\"2021-04-21T08:50\",\"LocalToTime\":\"2021-04-21 17:05\",\"ToUTCTime\":\"2021-04-21T17:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":275,\"LAYOVERDuration\":\"4h 35m\",\"FlyingMinutes\":495,\"DepartureDateTxt\":\"Wed, 21 Apr\",\"ArrivalDateTxt\":\"Wed, 21 Apr\",\"FlightDuration\":\"8h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":75,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4438,\"ApiResultIndex\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3738,\"Tax\":700,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4438,\"PublishedFare\":4406.52,\"OfferedFare\":4375.03,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":31.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":700,\"BaseFareCal\":4375.03,\"BaseFare\":3738,\"CommissionEarned\":62.97,\"TDS\":-2.45,\"MF\":21.19,\"YQ\":0,\"AGST\":192,\"MFT\":3.81,\"OT\":483,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":31.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"640\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-04-21T11:00\",\"SegFlightNumber\":\"SG-8723\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-04-21T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":275,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"4h 35m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"segmentid\":\"306\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-04-21T17:05\",\"SegFlightNumber\":\"SG-455\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-04-21T15:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":75,\"strDepartureDtTime\":\"15:35\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-5598322023_11DELBOMSG8723BOMGOISG455_833113227525962\",\"localFromDateTime\":\"2021-04-21 08:50\",\"localToDateTime\":\"2021-04-21 17:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"departure_date\":\"21\\/04\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"21\\/04\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-04-21\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Goa+In+%28GOI%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29&departure_date=21%2F04%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"muskancatpl@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9634022688\",\"FirstName\":\"Muskan\",\"LastName\":\"Gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"Sector 42\",\"CityTitle\":\"Agra\",\"CitySysId\":\"0\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"0\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-25 15:58:40\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"380\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"224093\",\"TPSysId\":\"224094\",\"VersionId\":[],\"CustomerSysId\":\"94418\",\"TrxId\":\"7898\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"380\":{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"JNSW\",\"Price\":\"250\",\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"}},\"SelectedBaggSessionNew\":{\"380\":{\"Currency\":\"INR\",\"key\":\"640\",\"Code\":\"EB10\",\"Price\":\"4000\",\"Weight\":\"10KG\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"763\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"380\",\"CustomerMemSysId\":[\"380\"],\"flight_booking_id\":[\"410\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-25 15:59:23'),(127,'5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794','{\"BookingData\":[{\"bookingId\":\"TJ101809085366\",\"FlightNumber\":\"6E-749\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:35\",\"ArrivalTime\":\"20:20\",\"TravelDate\":\"2021-03-26T15:35\",\"LocalFromTime\":\"2021-03-26 15:35\",\"FromUTCTime\":\"2021-03-26T15:35\",\"LocalToTime\":\"2021-03-26 20:20\",\"ToUTCTime\":\"2021-03-26T20:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Udaipur\",\"GroundTime\":130,\"LAYOVERDuration\":\"2h 10m\",\"FlyingMinutes\":285,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4994,\"PublishedFareTxt\":\"4,994\",\"ApiResultIndex\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4267,\"Tax\":727,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":221,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4994,\"PublishedFare\":4977.57,\"OfferedFare\":4961.14,\"CommissionEarned\":32.86,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.28,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":16.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":16.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":727,\"BaseFareCal\":4961.14,\"BaseFare\":4267,\"CommissionEarned\":32.86,\"TDS\":-1.28,\"MF\":21.19,\"YQ\":0,\"AGST\":221,\"MFT\":3.81,\"OT\":481,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":16.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":16.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":32.86,\"IntCommissionValInPercentage\":50,\"IntCommission\":16.43,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4977.57,\"CostToCustomer\":4977.57,\"BaseFareCal\":4961.14,\"intCommisionEarnedForAgency\":16.43,\"CostToCompany\":4961.14,\"intOfferedFare\":4961.14,\"intPublishFare\":4994,\"TripjackMarkup\":0,\"TripjackCommission\":32.86,\"TripjackTDS\":\"1.28\"}},\"Segments\":[{\"segmentid\":\"375\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Maharana Pratap Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Udaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"UDR\",\"destinationArrTime\":\"2021-03-26T17:00\",\"SegFlightNumber\":\"6E-749\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-26T15:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":130,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"15:35\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"2h 10m\",\"LAYOVERCity\":\"Udaipur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"504\",\"originAirportName\":\"Maharana Pratap Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Udaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T20:20\",\"SegFlightNumber\":\"6E-5042\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"UDR\",\"originDepTime\":\"2021-03-26T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101809085366\",\"FlightNumber\":\"6E-749\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"strTraceId\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:35\",\"ArrivalTime\":\"20:20\",\"TravelDate\":\"2021-03-26T15:35\",\"LocalFromTime\":\"2021-03-26 15:35\",\"FromUTCTime\":\"2021-03-26T15:35\",\"LocalToTime\":\"2021-03-26 20:20\",\"ToUTCTime\":\"2021-03-26T20:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Udaipur\",\"GroundTime\":130,\"LAYOVERDuration\":\"2h 10m\",\"FlyingMinutes\":285,\"DepartureDateTxt\":\"Fri, 26 Mar\",\"ArrivalDateTxt\":\"Fri, 26 Mar\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4994,\"ApiResultIndex\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4267,\"Tax\":727,\"YQTax\":0,\"OtherCharges\":481,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":221,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4994,\"PublishedFare\":4977.57,\"OfferedFare\":4961.14,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":16.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":727,\"BaseFareCal\":4961.14,\"BaseFare\":4267,\"CommissionEarned\":32.86,\"TDS\":-1.28,\"MF\":21.19,\"YQ\":0,\"AGST\":221,\"MFT\":3.81,\"OT\":481,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":16.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"375\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Maharana Pratap Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Udaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"UDR\",\"destinationArrTime\":\"2021-03-26T17:00\",\"SegFlightNumber\":\"6E-749\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2021-03-26T15:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":130,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"15:35\",\"strArrivalDtTime\":\"17:00\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"2h 10m\",\"LAYOVERCity\":\"Udaipur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"504\",\"originAirportName\":\"Maharana Pratap Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Udaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2021-03-26T20:20\",\"SegFlightNumber\":\"6E-5042\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"UDR\",\"originDepTime\":\"2021-03-26T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"20:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3222394349_6BOMUDR6E749UDRDEL6E5042_902229414547794\",\"localFromDateTime\":\"2021-03-26 15:35\",\"localToDateTime\":\"2021-03-26 20:20\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"departure_date\":\"26\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM)\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-26\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&departure_date=26%2F03%2F2021&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"baibhav@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7701888604\",\"FirstName\":\"baibhav\",\"LastName\":\"kumar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-26 11:05:03\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"80\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"224251\",\"TPSysId\":\"224252\",\"VersionId\":[\"27622\"],\"CustomerSysId\":\"95069\",\"TrxId\":\"7914\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"764\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"80\",\"CustomerMemSysId\":[\"80\"],\"flight_booking_id\":[\"411\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-26 11:05:15'),(129,'21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990','{\"BookingData\":[{\"bookingId\":\"TJ110409100956\",\"FlightNumber\":\"EY-5417\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"13:45\",\"ArrivalTime\":\"01:25\",\"TravelDate\":\"2021-03-27T13:45\",\"LocalFromTime\":\"2021-03-27 13:45\",\"FromUTCTime\":\"2021-03-27T13:45\",\"LocalToTime\":\"2021-03-28 01:25\",\"ToUTCTime\":\"2021-03-28T01:25\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Sat, 27 Mar\",\"ArrivalDateTxt\":\"Sun, 28 Mar\",\"FlightDuration\":\"11h 40m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10833,\"PublishedFareTxt\":\"10,833\",\"ApiResultIndex\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6155,\"Tax\":4678,\"YQTax\":2188,\"OtherCharges\":2385,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":80,\"MUFee\":0,\"intPublishedFare\":10833,\"PublishedFare\":10291.96,\"OfferedFare\":9750.92,\"CommissionEarned\":1082.08,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-42.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":541.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":541.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4678,\"BaseFareCal\":9750.92,\"BaseFare\":6155,\"CommissionEarned\":1082.08,\"TDS\":-42.16,\"MF\":21.19,\"YQ\":2188,\"AGST\":0,\"MFT\":3.81,\"OT\":2385,\"MU\":0,\"YR\":80,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":541.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":541.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1082.08,\"IntCommissionValInPercentage\":50,\"IntCommission\":541.04,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":10291.96,\"CostToCustomer\":10291.96,\"BaseFareCal\":9750.92,\"intCommisionEarnedForAgency\":541.04,\"CostToCompany\":9750.92,\"intOfferedFare\":9750.92,\"intPublishFare\":10833,\"TripjackMarkup\":0,\"TripjackCommission\":1082.08,\"TripjackTDS\":\"42.16\"}},\"Segments\":[{\"segmentid\":\"341\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-27T15:45\",\"SegFlightNumber\":\"EY-5417\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-03-27T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":250,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"453\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-28T01:25\",\"SegFlightNumber\":\"EY-268\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-27T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":240,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-03-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"8219\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ110409100956\",\"FlightNumber\":\"EY-5417\",\"AirlineName\":\"Etihad Airways\",\"AirlineCode\":\"EY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"strTraceId\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"AirlineSysId\":\"210\",\"DepartureTime\":\"13:45\",\"ArrivalTime\":\"01:25\",\"TravelDate\":\"2021-03-27T13:45\",\"LocalFromTime\":\"2021-03-27 13:45\",\"FromUTCTime\":\"2021-03-27T13:45\",\"LocalToTime\":\"2021-03-28 01:25\",\"ToUTCTime\":\"2021-03-28T01:25\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"Abu Dhabi\",\"GroundTime\":250,\"LAYOVERDuration\":\"4h 10m\",\"FlyingMinutes\":610,\"DepartureDateTxt\":\"Sat, 27 Mar\",\"ArrivalDateTxt\":\"Sun, 28 Mar\",\"FlightDuration\":\"11h 40m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"XNB\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10833,\"ApiResultIndex\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6155,\"Tax\":4678,\"YQTax\":2188,\"OtherCharges\":2385,\"Discount\":0,\"ServiceFee\":21.19,\"ManagementFeeTax\":3.81,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":80,\"MUFee\":0,\"intPublishedFare\":10833,\"PublishedFare\":10291.96,\"OfferedFare\":9750.92,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":541.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4678,\"BaseFareCal\":9750.92,\"BaseFare\":6155,\"CommissionEarned\":1082.08,\"TDS\":-42.16,\"MF\":21.19,\"YQ\":2188,\"AGST\":0,\"MFT\":3.81,\"OT\":2385,\"MU\":0,\"YR\":80,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":541.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"341\",\"originAirportName\":\"Dubai Chelsea Tower Bus Station\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2021-03-27T15:45\",\"SegFlightNumber\":\"EY-5417\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"XNB\",\"originDepTime\":\"2021-03-27T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":250,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"4h 10m\",\"LAYOVERCity\":\"Abu Dhabi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"},{\"segmentid\":\"453\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2021-03-28T01:25\",\"SegFlightNumber\":\"EY-268\",\"AirlineCode\":\"EY\",\"AirlineName\":\"Etihad Airways\",\"FareClass\":\"U\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2021-03-27T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"0KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":240,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"01:25\",\"FlightDuration\":\"4h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/EY.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-20-12-2-15-10-5548644471_8XNBAUHEY5417AUHMAAEY268_27643935208990\",\"localFromDateTime\":\"2021-03-27 13:45\",\"localToDateTime\":\"2021-03-28 01:25\",\"strSourceAirportCode\":\"XNB\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":1,\"intSourceCityId\":\"8219\",\"intDestinationCityId\":\"6000\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Dubai (XNB)\",\"mytrip_city_to\":\"Chennai (MAA)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"XNB\",\"ContSysId_1\":\"228\",\"destination_city\":\"MAA\",\"ContSysId\":\"101\",\"source\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"destination\":\"Chennai, IN - Chennai Arpt (MAA)\",\"departure_date\":\"27\\/03\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" DXB\",\"to_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"XNB\",\"destinationCityAirportCode\":\"MAA\",\"from\":\"XNB\",\"to\":\"MAA\",\"sourceCityText\":\"Dubai, DXB, AE - Dubai Chelsea Tower Bus Station (XNB)\",\"destinationCityText\":\"Chennai, IN - Chennai Arpt (MAA)\",\"sourceCityId\":8219,\"destinationCityId\":6000,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/03\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-03-27\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Dubai+%28XNB%29&mytrip_city_to=Chennai+%28MAA%29&adults=1&childs=0&infants=0&class=2&source_city=XNB&ContSysId_1=228&destination_city=MAA&ContSysId=101&source=Dubai%2C+DXB%2C+AE+-+Dubai+Chelsea+Tower+Bus+Station+%28XNB%29&destination=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29&departure_date=27%2F03%2F2021&return_date=&from_mytrip_city=+DXB&to_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"maroof.kazmi@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7599365720\",\"FirstName\":\"Narendra\",\"LastName\":\"Modi\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-26 15:44:40\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"p7961896\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2027-03-10\",\"passporIssue\":\"2017-03-09\",\"CustomerSysId\":\"107\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"224389\",\"TPSysId\":\"224390\",\"VersionId\":[\"27688\"],\"CustomerSysId\":\"107497\",\"TrxId\":\"7931\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"765\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"107\",\"CustomerMemSysId\":[\"107\"],\"flight_booking_id\":[\"412\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-26 15:46:01'),(131,'5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620','{\"BookingData\":[{\"bookingId\":\"TJ105309165131\",\"FlightNumber\":\"6E-5051\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2021-07-03T07:40\",\"LocalFromTime\":\"2021-07-03 07:40\",\"FromUTCTime\":\"2021-07-03T07:40\",\"LocalToTime\":\"2021-07-03 14:10\",\"ToUTCTime\":\"2021-07-03T14:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Indore\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Sat, 03 Jul\",\"ArrivalDateTxt\":\"Sat, 03 Jul\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":16032,\"PublishedFareTxt\":\"16,032\",\"ApiResultIndex\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13212,\"Tax\":2820,\"YQTax\":0,\"OtherCharges\":2028,\"Discount\":0,\"ServiceFee\":84.76,\"ManagementFeeTax\":15.24,\"AirlineGSTComponent\":692,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16032,\"PublishedFare\":15981.14,\"OfferedFare\":15930.28,\"CommissionEarned\":101.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.96,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":50.86,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":50.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"newFare\":0,\"oldFare\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1410,\"BaseFareCal\":7965.14,\"BaseFare\":6606,\"CommissionEarned\":50.86,\"TDS\":-1.98,\"MF\":42.38,\"YQ\":0,\"AGST\":346,\"MFT\":7.62,\"OT\":1014,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":25.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":25.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1410,\"BaseFareCal\":7965.14,\"BaseFare\":6606,\"CommissionEarned\":50.86,\"TDS\":-1.98,\"MF\":42.38,\"YQ\":0,\"AGST\":346,\"MFT\":7.62,\"OT\":1014,\"MU\":0,\"YR\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":25.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":25.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":101.72,\"IntCommissionValInPercentage\":50,\"IntCommission\":50.86,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":15981.14,\"CostToCustomer\":15981.14,\"BaseFareCal\":15930.28,\"intCommisionEarnedForAgency\":50.86,\"CostToCompany\":15930.28,\"intOfferedFare\":15930.28,\"intPublishFare\":16032,\"TripjackMarkup\":0,\"TripjackCommission\":101.72,\"TripjackTDS\":\"3.96\"}},\"Segments\":[{\"segmentid\":\"280\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2021-07-03T09:05\",\"SegFlightNumber\":\"6E-5051\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-07-03T07:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":170,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Indore\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"374\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-07-03T14:10\",\"SegFlightNumber\":\"6E-245\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2021-07-03T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPE\",\"Price\":1200,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPA\",\"Price\":2000,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPB\",\"Price\":4000,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPC\",\"Price\":6000,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPJ\",\"Price\":8000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"XBPD\",\"Price\":12000,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"VGTR\",\"Price\":0,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"UPMA\",\"Price\":0,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"PTSW\",\"Price\":0,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"PITA\",\"Price\":0,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"NVTR\",\"Price\":0,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"MUYO\",\"Price\":0,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"CTSW\",\"Price\":0,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"COMI\",\"Price\":0,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"CJSW\",\"Price\":0,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"CHSS\",\"Price\":0,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"280\",\"Code\":\"CHCT\",\"Price\":0,\"Description\":\"Chicken cucumber tomato sandwich\"}],\"isGSTMandatory\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2021-07-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105309165131\",\"FlightNumber\":\"6E-5051\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"strTraceId\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2021-07-03T07:40\",\"LocalFromTime\":\"2021-07-03 07:40\",\"FromUTCTime\":\"2021-07-03T07:40\",\"LocalToTime\":\"2021-07-03 14:10\",\"ToUTCTime\":\"2021-07-03T14:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Indore\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":390,\"DepartureDateTxt\":\"Sat, 03 Jul\",\"ArrivalDateTxt\":\"Sat, 03 Jul\",\"FlightDuration\":\"6h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":16032,\"ApiResultIndex\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13212,\"Tax\":2820,\"YQTax\":0,\"OtherCharges\":2028,\"Discount\":0,\"ServiceFee\":84.76,\"ManagementFeeTax\":15.24,\"AirlineGSTComponent\":692,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16032,\"PublishedFare\":15981.14,\"OfferedFare\":15930.28,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":50.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1410,\"BaseFareCal\":7965.14,\"BaseFare\":6606,\"CommissionEarned\":50.86,\"TDS\":-1.98,\"MF\":42.38,\"YQ\":0,\"AGST\":346,\"MFT\":7.62,\"OT\":1014,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":25.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1410,\"BaseFareCal\":7965.14,\"BaseFare\":6606,\"CommissionEarned\":50.86,\"TDS\":-1.98,\"MF\":42.38,\"YQ\":0,\"AGST\":346,\"MFT\":7.62,\"OT\":1014,\"MU\":0,\"YR\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":25.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"280\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2021-07-03T09:05\",\"SegFlightNumber\":\"6E-5051\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-07-03T07:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":170,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Indore\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"374\",\"originAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Indore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2021-07-03T14:10\",\"SegFlightNumber\":\"6E-245\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"IDR\",\"originDepTime\":\"2021-07-03T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4240849333_4DELIDR6E5051IDRGOI6E245_1019224758710620\",\"localFromDateTime\":\"2021-07-03 07:40\",\"localToDateTime\":\"2021-07-03 14:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":4,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"0\",\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"departure_date\":\"03\\/07\\/2021\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI)\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"03\\/07\\/2021\",\"return_dates\":\"\",\"strDepatureDate\":\"2021-07-03\",\"strReturnDate\":null},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Goa+In+%28GOI%29&adults=2&childs=2&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29&departure_date=03%2F07%2F2021&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29\",\"CustomerSession\":[{\"AgencySysId\":\"5293\",\"EmailId\":\"faizanlari5@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8874249264\",\"FirstName\":\"FAIZANULLAH\",\"LastName\":\"FAIZANULLAH\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-27 19:35:51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"108\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"09AAUPF5809N2ZX\",\"companyname\":\"Samar Enterprises\",\"gstemail\":\"samarenterprises@gmail.com\",\"gstphone\":\"8874249264\",\"gstaddress\":\"Fatehnagar Ward Lar Town\",\"gststate\":\"Uttar Pradesh\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"108\",\"EmailId\":\"faizanlari5@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8874249264\",\"FirstName\":\"Asiya Faizan\",\"LastName\":\"Lari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-27 19:35:51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"381\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"108\",\"EmailId\":\"faizanlari5@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8874249264\",\"FirstName\":\"Samar\",\"LastName\":\"Lari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-27 19:35:51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"382\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"5293\",\"CustomerSysId\":\"108\",\"EmailId\":\"faizanlari5@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8874249264\",\"FirstName\":\"Mannat\",\"LastName\":\"Lari\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"5293\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":\"\",\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"\",\"countryCode\":\"91\",\"RegisterDate\":\"2021-03-27 19:35:51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"383\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"224657\",\"TPSysId\":\"224658\",\"VersionId\":[\"27797\"],\"CustomerSysId\":\"107874\",\"TrxId\":\"7948\"},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"766\",\"767\",\"768\",\"769\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"108\",\"CustomerMemSysId\":[\"108\",\"381\",\"382\",\"383\"],\"flight_booking_id\":[\"413\"]},\"selectedSeatSession\":null,\"_sessiondata\":null}','2021-03-27 19:38:23'),(132,'a4aa7-67416-8ad0b-8a2f4','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid2695661847-741177882\",\"name\":\"OYO FLAGSHIP 75488 ROYAL GRAND INN\",\"img\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yNjg5MzY5MDEuanBnP2s9Nzc3OWE1MzRmNzM2ZjFjMjQ2MmNmODQ2Y2QyYTE1YjJkNzhmZGUxZTU2OTI3Yzk0NzlhMDI1YjlhZjFjMmRlMiZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yNjg5MzY5MDEuanBnP2s9Nzc3OWE1MzRmNzM2ZjFjMjQ2MmNmODQ2Y2QyYTE1YjJkNzhmZGUxZTU2OTI3Yzk0NzlhMDI1YjlhZjFjMmRlMiZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xL2YzNzBjNzg2ZjIxMjM1YmYwMDNmYzk0ODQyYWI1ZGY3LmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xL2YzNzBjNzg2ZjIxMjM1YmYwMDNmYzk0ODQyYWI1ZGY3LmpwZz9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xLzhjMmY3MDZiMzJjYjcxMzAxMjllZGFkOTYwYWJjOTQ0LmpwZz9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3BpeDYuYWdvZGEubmV0L2hvdGVsSW1hZ2VzLzE4NjMwMzYxLy0xLzhjMmY3MDZiMzJjYjcxMzAxMjllZGFkOTYwYWJjOTQ0LmpwZz9zPTMxMng=\"}],\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 5 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"rt\":3,\"gl\":{\"ln\":\"\",\"lt\":\"\"},\"ad\":{\"adr\":\"H-35,Sector 51, Noida Special Economic Zone,Noida\",\"city\":{\"name\":\"New Delhi\"},\"country\":{\"name\":\"India\"}},\"pt\":\"HOTEL\",\"tags\":[],\"ops\":[{\"ris\":[{\"id\":\"18630361_0_75244\",\"rc\":\"Classic Double or Twin\",\"rt\":\"Single-Classic Double Or Twin-1-\",\"adt\":1,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":1189.9,\"tfcs\":{\"TF\":1189.9,\"TAF\":123.6,\"BF\":1066.3,\"NF\":1089.9},\"tafcs\":{\"TAF\":{\"MU\":100,\"MF\":20,\"MFT\":3.6}},\"pis\":[{\"day\":1,\"fc\":{\"TF\":594.95,\"TAF\":61.8,\"BF\":533.15,\"NF\":544.95},\"afc\":{\"TAF\":{\"MU\":50,\"MF\":10,\"MFT\":1.8}}},{\"day\":2,\"fc\":{\"TF\":594.95,\"TAF\":61.8,\"BF\":533.15,\"NF\":544.95},\"afc\":{\"TAF\":{\"MU\":50,\"MF\":10,\"MFT\":1.8}}}],\"checkInDate\":\"2021-04-17\",\"checkOutDate\":\"2021-04-19\"}],\"id\":\"26_18630361-562_0_52785\",\"tp\":1189.9,\"cnp\":{\"id\":\"26_18630361-562_0_52785\",\"ifra\":true,\"pd\":[{\"fdt\":\"2021-03-31T19:16:02.454\",\"tdt\":\"2021-04-12T12:00\",\"am\":0},{\"fdt\":\"2021-04-12T12:00\",\"tdt\":\"2021-04-17T12:00\",\"am\":569.59}],\"mi\":{\"iba\":true,\"iso\":false}},\"ddt\":\"2021-04-12T12:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Child and extra bed policy : Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.Guests over 5 years old are considered as an adults.Extra beds are depend on the room you choose,please check the individual room policy for more details.\"}],\"iopr\":false}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1189.9},{\"fc\":[\"BREAKFAST\"],\"tpc\":1291.04}],\"mi\":{\"set\":\"2021-03-31T19:35:04.675\"}},\"bookingId\":\"TJS205300061642\",\"query\":{\"checkinDate\":\"2021-04-17\",\"checkoutDate\":\"2021-04-19\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"110203\",\"countryName\":\"India\",\"cityName\":\"New Delhi\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid2695661847\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1125},\"metaInfo\":[]},\"hotelbookingid\":\"1\",\"SearchHotelTraceId\":\"a4aa7-67416-8ad0b-8a2f4\",\"CustomerSession\":{\"bookingId\":\"a4aa7-67416-8ad0b-8a2f4\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"9818999760\",\"traceId\":\"a4aa7-67416-8ad0b-8a2f4\",\"leadEmail\":\"sudipta@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"Sudipta\",\"passenger-lastname-1\":\"Banerjee\",\"passenger-panNumber-1\":\"dsfdsf\",\"specialrequest\":\"sfdsdf\"}}','2021-03-31 19:21:20'),(133,'a122d-1a018-21c16-90ace','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid6993505041-799362267\",\"name\":\"SPOT ON DEL2878 S K RESIDENCY\",\"img\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzNTQuanBnP2s9NDA5MDMxOWNlNzkyZGY5YTM4YmU1ZTFkM2UwOWZjNzA0MTlkYzk3Y2Y0NmU3OTM5Mjc2OGFmZWZiNzk4NTFkYSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzNTQuanBnP2s9NDA5MDMxOWNlNzkyZGY5YTM4YmU1ZTFkM2UwOWZjNzA0MTlkYzk3Y2Y0NmU3OTM5Mjc2OGFmZWZiNzk4NTFkYSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMjAuanBnP2s9N2JkZTRhYTNhNDQ1Yjc0Yzg4NjkwOTFmMzk5OTljMmMwYWQ1MTBhZGY4ZGZjMjMxNmJkMGU4YWQyNzExMzFjNSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMjAuanBnP2s9N2JkZTRhYTNhNDQ1Yjc0Yzg4NjkwOTFmMzk5OTljMmMwYWQ1MTBhZGY4ZGZjMjMxNmJkMGU4YWQyNzExMzFjNSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMTMuanBnP2s9NDE1ZTA3NTBjYjI3ZDc2MGM4NzY3N2ZmM2FiMDczMDQzOGM0OGZmNWM4MmM0YzNkZDJlOGUyZGNlNDRmNzYwMSZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMTMuanBnP2s9NDE1ZTA3NTBjYjI3ZDc2MGM4NzY3N2ZmM2FiMDczMDQzOGM0OGZmNWM4MmM0YzNkZDJlOGUyZGNlNDRmNzYwMSZvPT9zPTMxMng=\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMzQuanBnP2s9MmRiOTRjNzljYjcxMGU0ZTg2OGUwNmU1M2Q0ZGUxNzI4ZWU4ZGUzMDdiMTY3ZTgyMzlhZTAwN2Q1M2I1YTZjNiZvPT9zPTMxMng=\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL3EteHguYnN0YXRpYy5jb20veGRhdGEvaW1hZ2VzL2hvdGVsL21heDUwMC8yODQ0ODAzMzQuanBnP2s9MmRiOTRjNzljYjcxMGU0ZTg2OGUwNmU1M2Q0ZGUxNzI4ZWU4ZGUzMDdiMTY3ZTgyMzlhZTAwN2Q1M2I1YTZjNiZvPT9zPTMxMng=\"}],\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.<br><br>Guests over 5 years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"rt\":3,\"gl\":{\"ln\":\"77.07655\",\"lt\":\"28.60444\"},\"ad\":{\"adr\":\"RZ B3\\/162,RZ B3\\/162, Vijay enclave, Palam, Dwarka Tehsil, South West Delhi, Delhi, 110045, India,Delhi\",\"city\":{\"name\":\"Noida\"},\"country\":{\"name\":\"India\"}},\"pt\":\"HOTEL\",\"tags\":[],\"ops\":[{\"ris\":[{\"id\":\"22476514_0_74434\",\"rc\":\"SPOT ON Room without Air Conditioning\",\"rt\":\"Double-SPOT ON Room Without Air Conditioning-2-\",\"adt\":2,\"chd\":0,\"mb\":\"ROOM ONLY\",\"tp\":549.81,\"tfcs\":{\"NF\":449.81,\"TF\":549.81,\"BF\":438.01,\"TAF\":111.8},\"tafcs\":{\"TAF\":{\"MU\":100,\"MFT\":1.8,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"NF\":449.81,\"TF\":549.81,\"BF\":438.01,\"TAF\":111.8},\"afc\":{\"TAF\":{\"MU\":100,\"MFT\":1.8,\"MF\":10}}}],\"checkInDate\":\"2021-04-28\",\"checkOutDate\":\"2021-04-29\"}],\"id\":\"26_22476514-182_0_70792\",\"tp\":549.81,\"cnp\":{\"id\":\"26_22476514-182_0_70792\",\"ifra\":true,\"pd\":[{\"fdt\":\"2021-04-09T07:50:13.816\",\"tdt\":\"2021-04-23T12:00\",\"am\":0},{\"fdt\":\"2021-04-23T12:00\",\"tdt\":\"2021-04-28T12:00\",\"am\":438.01}],\"mi\":{\"iba\":true,\"iso\":false}},\"ddt\":\"2021-04-23T12:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"No Shared BathroomChild and extra bed policy : Infant 0-2 year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.Children 3-5 year(s) old stay for free if using existing bedding, extra bed and meals are not included.Guests over 5 years old are considered as an adults.Extra beds are depend on the room you choose,please check the individual room policy for more details.\"}],\"iopr\":false}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":549.81}],\"mi\":{\"set\":\"2021-04-09T08:09:46.035\"}},\"bookingId\":\"TJS204500063115\",\"query\":{\"checkinDate\":\"2021-04-28\",\"checkoutDate\":\"2021-04-29\",\"roomInfo\":[{\"numberOfAdults\":2,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"110268\",\"countryName\":\"India\",\"cityName\":\"Noida\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid6993505041\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":false,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1155},\"metaInfo\":[]},\"hotelbookingid\":\"2\",\"SearchHotelTraceId\":\"a122d-1a018-21c16-90ace\",\"CustomerSession\":{\"bookingId\":\"a122d-1a018-21c16-90ace\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"9695357709\",\"traceId\":\"a122d-1a018-21c16-90ace\",\"leadEmail\":\"deepak@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"2\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"Deepak\",\"passenger-lastname-1\":\"Kumar\",\"passenger-panNumber-1\":\"4545465464\",\"paxType-2\":\"1\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Mr\",\"passenger-firstname-2\":\"Vivek\",\"passenger-lastname-2\":\"Kumar\",\"passenger-panNumber-2\":\"4+64vds\",\"specialrequest\":\"gdg\"}}','2021-04-09 13:21:28'),(134,'12286-a6db9-bee9a-a5fe5','{\"BookingData\":{\"hInfo\":{\"id\":\"hsid3351537812-476262350\",\"name\":\"HOTEL THE NEST\",\"img\":[{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvQ0hBSU4uanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvQ0hBSU4uanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSEEuanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSEEuanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSE8uanBn\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvSE8uanBn\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMy9ueGQvbWF0L3J5aS9qYnEvMDAwMDA5NzcwOFJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMy9ueGQvbWF0L3J5aS9qYnEvMDAwMDA5NzcwOFJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ1MFJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ1MFJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ0OVJELmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvMDAwMDEwMjQ0OVJELmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQxLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQxLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQyLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQyLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQzLmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQzLmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ0LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ0LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ1LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ1LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ2LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ2LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ3LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMi9ueGQvbWF0L3J5aS9qYnEvWFQ3LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ4LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ4LmpwZw==\"},{\"tns\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ5LmpwZw==\",\"url\":\"http:\\/\\/hotel.atlastravelsonline.com\\/\\/cpfv3\\/images\\/?image=aHR0cDovL2Nkbi50cmF2ZWxwYXJ0bmVyd2ViLmNvbS9EZXNpeWFJbWFnZXMvSW1hZ2UvMS9ueGQvbWF0L3J5aS9qYnEvWFQ5LmpwZw==\"}],\"des\":\"<b>Rooms:<\\/b><br>Deluxe I<br>Standard Room<br>Deluxe II<br><b>Check in at <\\/b>12:00 pm<br><b>Check out at <\\/b>12:00 pm<br>\",\"rt\":3,\"gl\":{\"ln\":\"77.10909\",\"lt\":\"31.958788\"},\"ad\":{\"adr\":\"Kullu, Himachal Pradesh, Near Main Bus Stand, Sarwari Bazar Kullu\",\"city\":{\"name\":\"Manali\"},\"country\":{\"name\":\"India\"}},\"fl\":[\"Suitable for children\\rPrinter\\rTaxi Service\\rCCTV\\rFire Extinguisher\\rBachelors\\rChild Friendly\\rCouples\\rFamilies with Children\\rFamily\\rLarge Groups\\rSenior Citizen Friendly\\rYoungsters\\rNon-Vegetarian\\rUnmarried Couples\\rTV In Room\\rEnglish\\rHindi\\rPunjabi\\rCar rental\\rBike rental\\rTravel counter\\r4 Wheeler\\rCash\\rDebit Card\\rCredit Card\\rVisa\\rMastercard\\rPaytm\\rRoom Service\\rRoom Service (Limited Time)\\rHot water available\\rAirport\\/\\/Railway station pickup available (Chargeable)\\rAirport\\/Railway station drop (chargeable)\\rCar rental (Chargeable)\\rBike Rental (Chargeable)\\rScooty Rental (Chargeable)\\rBus Parking\\rCCTV camera installed inside\\/outside hotel premises\\rCCTV camera installed on each floor\\rWIFI\\rLaundry facilities\\rMedical services\\rCarpeted\\rParking\\rAirport Shuttle (surcharge)\\rFlat-screen TV\\rTV\\rSatellite channels\\rCable channels\\rRestaurant with Dining Menu\\rTerrace\\rDining area\\rRestaurant\\rLuggage storage\\rCurrency exchange\\rDoctor on Call\\rFront desk\\rInternet Access\\rTrekking\\/ Hiking\\rH\\/C running water\\rBuzzer \\/ Intercom\\rWestern Toilet\\rAttached Bathroom\\rMakeup mirror\\rPremium TV channels\\rShowers only\\rSmoking rooms\\rwindow opens\\rCable\\/satellite TV\\rCeiling fan\\rExtra towels,linens,bedding\\rInternet access-high speed\\rInternet access-wireless\"],\"pt\":\"HOTEL\",\"cnt\":[],\"tags\":[],\"ops\":[{\"ris\":[{\"id\":\"0_00035463-94_40093\",\"rc\":\"Single Deluxe I\",\"rt\":\"Single Deluxe I\",\"adt\":1,\"chd\":2,\"mb\":\"ROOM ONLY\",\"tp\":1387.19,\"tfcs\":{\"BF\":1275.39,\"TAF\":111.8,\"TF\":1387.19,\"NF\":1287.19},\"tafcs\":{\"TAF\":{\"MFT\":1.8,\"MU\":100,\"MF\":10}},\"pis\":[{\"day\":1,\"fc\":{\"BF\":1275.39,\"TAF\":111.8,\"TF\":1387.19,\"NF\":1287.19},\"afc\":{\"TAF\":{\"MFT\":1.8,\"MU\":100,\"MF\":10}}}],\"checkInDate\":\"2021-06-06\",\"checkOutDate\":\"2021-06-07\"}],\"id\":\"0_00035463-94_30819\",\"tp\":1387.19,\"cnp\":{\"id\":\"0_00035463-94_30819\",\"ifra\":true,\"pd\":[{\"fdt\":\"2021-04-12T08:01:15.474\",\"tdt\":\"2021-05-30T12:00\",\"am\":0},{\"fdt\":\"2021-05-30T12:00\",\"tdt\":\"2021-06-06T12:00\",\"am\":1275.39}],\"mi\":{\"iba\":true,\"iso\":false}},\"ddt\":\"2021-05-30T12:00\",\"inst\":[{\"type\":\"BOOKING_NOTES\",\"msg\":\"Mandatory Gala Dinner charges applicable for Christmas and New Year to be paid at the hotel directly by the guests(If any) Compulsory Gala Dinner charges applicable for Christmas and New Year to be paid at the hotel directly by the guestSanitized Room Trained Staff - Personal Hygiene Sterilize Indoor Adherence to WHO Guidelines Hotel Staff and Guest\'s body temperature monitored at hotel entry points. Refused entry if the temperature is above 99.1 ( F ) degree Fahrenheit. Rooms will have alcohol-based hand sanitizer and face mask for guest use. Room sanitization done in front of guests when checking in. Hotel staff has Arogya Setu app. Every staff member wears face masks and gloves at all service times. Hotel rooms\\/floors and public areas are cleaned with hospital-grade disinfectants The hotel has In-Room Dining options available with minimal contact service and disposable\\/sanitized crockery & cutlery. Hotel staff ensures to maintain social distancing at all times. Every guest\'s travel records are maintained as per local and central Government of India guidelines. While working with supplier and contractors hotel complies with health advisories and Government guidelines.\"}],\"iopr\":false,\"ipr\":false,\"ipm\":false}],\"pops\":[{\"fc\":[\"ROOM ONLY\"],\"tpc\":1387.19}],\"mi\":{\"set\":\"2021-04-12T08:21:13.666\"}},\"bookingId\":\"TJS204100063905\",\"alerts\":[{\"oldFare\":1237.17,\"newFare\":1287.19,\"type\":\"FAREALERT\"}],\"query\":{\"checkinDate\":\"2021-06-06\",\"checkoutDate\":\"2021-06-07\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":2,\"childAge\":[5,6]}],\"searchCriteria\":{\"city\":\"110318\",\"countryName\":\"India\",\"cityName\":\"Manali\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[5,4,3],\"currency\":\"INR\",\"fsc\":false},\"searchId\":\"hsid3351537812\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"isPriceChanged\":true,\"status\":{\"success\":true,\"httpStatus\":200},\"conditions\":{\"isBA\":true,\"st\":1181},\"metaInfo\":[]},\"hotelbookingid\":\"4\",\"SearchHotelTraceId\":\"12286-a6db9-bee9a-a5fe5\",\"CustomerSession\":{\"bookingId\":\"12286-a6db9-bee9a-a5fe5\",\"module\":\"hotels\",\"controller\":\"index\",\"action\":\"hotel-review\",\"countrycode\":\"+91\",\"leadMobile\":\"9695357709\",\"traceId\":\"12286-a6db9-bee9a-a5fe5\",\"leadEmail\":\"deepak@catpl.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"3\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"Mr\",\"passenger-firstname-1\":\"Deepak\",\"passenger-lastname-1\":\"Kumar\",\"passenger-panNumber-1\":\"4+64+64+4+4+4\",\"paxType-2\":\"2\",\"CustomerSysId-2\":\"\",\"salution-2\":\"Master\",\"passenger-firstname-2\":\"Rahul\",\"passenger-lastname-2\":\" kumar\",\"passenger-panNumber-2\":\"+8+8+\",\"paxType-3\":\"2\",\"CustomerSysId-3\":\"\",\"salution-3\":\"Master\",\"passenger-firstname-3\":\"Vivek \",\"passenger-lastname-3\":\"Kumar\",\"passenger-panNumber-3\":\"5+5+\",\"specialrequest\":\"\"}}','2021-04-12 13:58:52');
/*!40000 ALTER TABLE `tbl_temp_data` 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_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=74 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','1609841189_blog.jpg','1609841189.jpg',NULL,'Blogger','2020-10-20',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;\">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. 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><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;\">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><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: 25%;\"><br></p>',NULL,'2020-10-20 16:37:19','2020-10-20 16:37:19',NULL,1,'',0,0,'','','','[\"14\",\"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 ‘curry’ 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’s a ‘kulfi’ or a ‘jalebi’ 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 ‘Paan’, 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’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. 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,0,'','','','[\"12\"]',1,''),(5,'Where are the world\'s so-called glowing beaches','where-are-the-world-s-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. </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 </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? </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? </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;\"> holiday trip to one of them.</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> </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! </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 </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;\"> 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 </span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">SOMETHING SPECIAL </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;\"> ineedtrip</strong><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> can plan a </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;\"> for you. We will take you to 2 of the most fantastic beach destinations around the world that are home to such </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. </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;\"> </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> <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;\"> the best beach destinations around the world</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> 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> <span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">in the Maldives. </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 </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;\"> with</span><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> ineedtrip</strong><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> 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;\"> Wish to know more about Maldives? Read our blog on the <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: </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! </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;\"> 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. With turquoise-blue waters and beaches with diverse corals, this place is the gem of Indonesia. </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 </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;\"> and is home to a magnificent sight at night. </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;\">.’ </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 <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 <strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">ineedtrip</strong> have customized some amazing</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> Bali and Honeymoon Packages for you. They are </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? </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,0,'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. </span><br></p>',NULL,'2021-03-11 12:31:22','2021-03-11 12:31:22',NULL,1,'',0,0,'','','','[\"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','1615884230_blog.png','1615884230.png',NULL,'Aniket Agarwal','2021-01-27',NULL,NULL,NULL,'<p>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><strong>The Best Time for Visiting Dubai</strong></p>\r\n\r\n<p>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><strong>Best Activities for a Couple on a Honeymoon in Dubai</strong></p>\r\n\r\n<p>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><strong>Best Places for a Dinner Date</strong></p>\r\n\r\n<p>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 honeymoon in Dubai:</p>\r\n\r\n<p><strong>Ossiano</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@manu_masala_off</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Fish Beach Taverna</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@miho_0608</p>\r\n\r\n<p>Fairy lights, a smooth sea breeze pouring over you, a gorgeous view of the beach: all of that screams <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.</p>\r\n\r\n<p><strong>Atmosphere</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@atmospheredubai</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Thiptara</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@kent.tupas</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Pierchic</strong></p>\r\n\r\n<p>Pic Creds: Instafram/@pierchicdubai</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Al Dawaar Revolving Restaurant</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@hyattregencydubai</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Tong Thai</strong></p>\r\n\r\n<p>Pic Creds; Insta/@tongthaidubai</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Masti Cocktails and Cuisine</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@gomiddleeast</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Ineedtrip for your Dubai Honeymoon Packages</strong></p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">packages</a> we have, you’ll get the best experience, no matter what your restraints are. For an unforgettable honeymoon in Dubai, you know where to look for!</p>\r\n',NULL,'2021-03-16 14:13:50','2021-03-16 14:13:50',NULL,1,'',0,0,'dinner date on honeymoon in Dubai','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(9,'How to choose the best honeymoon packages to Maldives','how-to-choose-the-best-honeymoon-packages-to-maldives','1615884666_blog.png','1615884666.png',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’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. 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>Pic Creds: Instagram/@katharina_fenners</p>\r\n\r\n<p><strong>What else?</strong></p>\r\n\r\n<p>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><strong>When Is The Best Time To Take A Trip To The Maldives?</strong></p>\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.</p>\r\n\r\n<p><strong>November to April</strong></p>\r\n\r\n<p>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><strong>May to October</strong></p>\r\n\r\n<p>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<p><strong>The Best Maldives Honeymoon Packages: Consider Your Budget</strong></p>\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’t be too heavy on your pocket.</p>\r\n\r\n<p><strong>A Luxurious Stay</strong></p>\r\n\r\n<p>If budget is not an issue for you, then you can choose<a href=\"https://www.ineedtrip.com/tours/maldives-holiday-package-may-month-club-rannhali/\"> this</a> 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.</p>\r\n\r\n<p><strong>A Budget-friendly Stay</strong></p>\r\n\r\n<p>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><strong>ineedtrip: The Best Company To Opt For Planning The Best Package For Your Honeymoon To Maldives</strong></p>\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×7 support, and we have discounts running year around.</p>\r\n\r\n<p><strong>Final Words</strong></p>\r\n\r\n<p>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>\r\n',NULL,'2021-03-16 14:21:06','2021-03-16 14:21:06',NULL,1,'',0,0,'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\":[\"\"]}'),(10,'TOP 7 THINGS TO DO IN NUSA DUA (BALI)','top-7-things-to-do-in-nusa-dua-bali-','1615902795_blog.png','1615902795.png',NULL,'Aniket Agarwal','2020-11-11',NULL,NULL,NULL,'<p>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><strong>WATER BLOW</strong></p>\r\n\r\n<p>[caption id="attachment_23001" align="alignnone" width="850"] Creds: Instagram/@watsonsmileclub[/caption]</p>\r\n\r\n<p>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. 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.</p>\r\n\r\n<p><strong>HIGH TEA AT THE ST REGIS</strong></p>\r\n\r\n<p>[caption id="attachment_23002" align="alignnone" width="1080"] Pic Creds: Instagram/@stregisbali[/caption]</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>DEVDAN SHOW</strong></p>\r\n\r\n<p>[caption id="attachment_23003" align="alignnone" width="1080"] Pic Creds: Instagram/@ygki.t•[/caption]</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>PIRATES BAY</strong></p>\r\n\r\n<p>[caption id="attachment_23005" align="alignnone" width="1080"] Creds: Instagram/@piratesbaybali[/caption]</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>WATER SPORTS</strong></p>\r\n\r\n<p>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><strong>NUSA DUA BEACH GRILL</strong></p>\r\n\r\n<p>[caption id="attachment_23006" align="alignnone" width="1024"] Creds: Instagram/@nusaduabeachgrill[/caption]</p>\r\n\r\n<p>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. 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 & holiday tour packages</a> to know more about our packages and don't forget to check out the itinerary.</p>\r\n',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 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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(11,'Best Places To Shop In Bali On Honeymoon','best-places-to-shop-in-bali-on-honeymoon','1615903422_blog.png','1615903422.png',NULL,'Aniket Agarwal','2020-11-05',NULL,NULL,NULL,'<p>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. 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. How you can leave shopping, shopping definitely makes every trip more memorable. People normally shop for Balinese art chandi crafts, wooden handi crafts, paintings, sculptures and others here. </p>\r\n\r\n<p><strong>KRISHNA BALI SOUVENIR SHOP</strong></p>\r\n\r\n<p>PIc Creds: Instagram/dagangcanang_online</p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>GIANYAR NIGHT MARKET</strong></p>\r\n\r\n<p> 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. Location: Gianyar, Bali. </p>\r\n\r\n<p><strong>BALI BONBON AND LOPI KUWAK</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>SUKAWATI MARKET</strong></p>\r\n\r\n<p>Pic Creds: Instagram/exoticimportsbali</p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>UBUD SHOPPING MARKET</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@yosoyglori</p>\r\n\r\n<p>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. If you haven’t already 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>, 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 <a href=\"https://www.ineedtrip.com/bali-packages/\">Bali honeymoon and holiday packages</a> section. One thing that we can ensure you is that our list of inclusions and price would make your jaw drop.</p>\r\n',NULL,'2021-03-16 19:33:43','2021-03-16 19:33:43',NULL,1,'',0,0,'Best Places To Shop 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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(12,'5 Best Restaurants in Bali','5-best-restaurants-in-bali','1615917499_blog.png','1615917499.png',NULL,'Aniket Agarwal','2020-10-29',NULL,NULL,NULL,'<p>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><strong>JU- MA-NA at Banyan Tree Ungasan</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@Jumana_Bali</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>TIMINGS : </strong>12:00pm to 3:30pm & 6:30pm to 11:00pm</p>\r\n\r\n<p><strong>Dinner For Two</strong>: INR 2200-2600 </p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>BREEZE AT THE SAMAYA SEMINYAK BALI </strong></p>\r\n\r\n<p>Pic Creds: Instagram/@inclovermagz</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>TIMINGS: </strong>12:00pm to 3:00pm & 6:00pm to 11:00pm</p>\r\n\r\n<p><strong>Dinner for two:</strong> INR 800-3000</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>KUBU AT MANDAPA</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@tammi.bie</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>TIMINGS: </strong>6:30pm to 11:00pm</p>\r\n\r\n<p><strong>Cost for Two:</strong> INR 3000-7000</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>SANGKAR RESTAURANT AT BULGARI RESORT BALI</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@bulgarihotels</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>TIMINGS : </strong>12:00pm to 3:00pm & 6:00pm to 11:00pm</p>\r\n\r\n<p><strong>Cost for Two</strong>: INR 3000-7000</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>MOZAIC RESTAURANT</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@mozaicrestaurantubud</p>\r\n\r\n<p>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?</p>\r\n\r\n<p><strong>TIMINGS : </strong>12:00pm TO 2:00pm</p>\r\n\r\n<p><strong>Cost for Two:</strong> INR 5000-11000</p>\r\n\r\n<p>If you want to know what to eat and what to try out in Bali, read our blog on the <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>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 <a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Packages</a> section as well. We offer the best prices, with a great list of inclusions, from sightseeing to dinners, activities, and more.</p>\r\n',NULL,'2021-03-16 23:28:19','2021-03-16 23:28:19',NULL,1,'',0,0,'Best Restaurants in Bali','we\'ll help you find the 5 best restaurants in Bali for couples so that you can go for that special dinner without worrying.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(13,'7 Best Beaches in Bali after Covid19','7-best-beaches-in-bali-after-covid19','1615956971_blog.png','1615956971.png',NULL,'Aniket Agarwal','2020-08-10',NULL,NULL,NULL,'<p>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 7 best beaches in Bali, 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 <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. </p>\r\n\r\n<p>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><strong>KUTA BEACH</strong></p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>JIMBARAN BEACH</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>SEMINYAK BEACH</strong></p>\r\n\r\n<p>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><strong>SANUR BEACH</strong></p>\r\n\r\n<p>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><strong>LOVINA BEACH</strong></p>\r\n\r\n<p>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><strong>CANGGU BEACH</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>BROKEN BEACH</strong></p>\r\n\r\n<p>The broken 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 <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>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 honeymoon packages for Bali. 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 <a href=\"https://www.ineedtrip.com/bali-packages/\">here</a>, and decide for yourself?</p>\r\n',NULL,'2021-03-17 10:26:12','2021-03-17 10:26:12',NULL,1,'',0,0,'5 Best Beaches in Bali','Although you\'ll find countless beaches here, within this blog we have mentioned the 7 best beaches in Bali, ideal for a honeymoon.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(14,'Top 10 Must try Dishes in Bali','top-10-must-try-dishes-in-bali','1615957216_blog.png','1615957216.png',NULL,'Aniket Agarwal','2020-07-22',NULL,NULL,NULL,'<p>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 <a href=\"https://www.ineedtrip.com/bali-packages/\">best honeymoon packages</a> to Bali at the end of this blog.</p>\r\n\r\n<p><strong>1. Babi Guling Ibu Oka</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>2. Bebek Bengil</strong></p>\r\n\r\n<p>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><strong>3. Tempe Goreng</strong></p>\r\n\r\n<p>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><strong>4. Nasi Padang</strong></p>\r\n\r\n<p>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><strong>5. The Fat Turtle</strong></p>\r\n\r\n<p>pic cred- sitdowndisco</p>\r\n\r\n<p>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. You’ll regret it if you leave Bali without trying this dish. Do try it out.</p>\r\n\r\n<p><strong>6. Sayur Lodeh</strong></p>\r\n\r\n<p>pic cred: asianfoodnetwork</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>7. Mie Goreng</strong></p>\r\n\r\n<p>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><strong>8. Sate</strong></p>\r\n\r\n<p>Pic creds: Kuali</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>9. Gado Gado</strong></p>\r\n\r\n<p>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><strong>10. Mini Rijstaffle</strong></p>\r\n\r\n<p>Pic creds; Conimex.nl</p>\r\n\r\n<p>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 & 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. So if you don’t try this, you’ll be disappointed with the foodie in you as well as your partner’s expectations. </p>\r\n\r\n<p>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. </p>\r\n\r\n<p>Coming to the part of the package.</p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/bali-packages/\">blockbuster packages</a>. Here’s a sneak-peek into our list of inclusions in Bali <a href=\"https://www.ineedtrip.com/bali-packages/\">honeymoon packages</a>.</p>\r\n\r\n<p>1. Uluwatu Temple Tour with Kecak Dance</p>\r\n\r\n<p>2. Tanah Lot Temple Tour</p>\r\n\r\n<p>3. 4 Star Hotel with Breakfast</p>\r\n\r\n<p>5. Romantic dinner on the beach</p>\r\n\r\n<p>6. Gili Island Excursion Tour</p>\r\n\r\n<p>7. 1 Lunch</p>\r\n\r\n<p>8. Daily Breakfast</p>\r\n\r\n<p>9. Dinner on a cruise</p>\r\n\r\n<p>10. Water Sports activities Parasailing, Banana boat ride, and more.</p>\r\n\r\n<p>This and a lot more is waiting for you. Check out our <a href=\"https://www.ineedtrip.com/bali-packages/\">packages</a> now and get yourself an unmatchable deal! Bon Voyage and Happy Eating! Enjoy the adventures to the fullest.</p>\r\n',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.','','',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. </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 </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 </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. </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. </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 </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> <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 </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. </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. </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. </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 </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 </span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">underwater waterfall </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 </span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">best things to do in Mauritius <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;\"> </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. </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;\"> </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 <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> to plan your trip and our blog on the <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> 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;\"> </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;\"> 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 <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 <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. </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. </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. 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 </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 <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,0,'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 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','1615961191_blog.png','1615961191.png',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p>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><strong>1. Swimming at the Atuh Beach</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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><strong>2. Visiting The Monster At KelingKing Cliff Point</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/theres-a-t-rex-in-bali-its-dangerous-but-doesnt-bite/\">separate blog</a> on it that has all the details about how to get there what to do and more, you can read it <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><strong>3. Spending A Night A</strong><strong>t Rumah Pohon Tree House</strong></p>\r\n\r\n<p>Image Creds: @thenorthernboy</p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>4. Snorkelling At Crystal Bay</strong></p>\r\n\r\n<p>Pic cresds: floreswonderfultour.com</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>5. Sunset At Broken Beach and Relaxing at the Angel’s Billabong</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>6. Scuba Diving At Manta Point</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>7. </strong><strong>Having Fun At The Natural Pool in Tembeling Beach’s Forest</strong></p>\r\n\r\n<p>Pic Creds: wanderersandwarriors.com</p>\r\n\r\n<p>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. 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.</p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p>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 <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>\r\n',NULL,'2021-03-17 11:36:31','2021-03-17 11:36:31',NULL,1,'',0,0,'Top 7 Things To Do In Nusa Penida For Couples','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','','',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','1615964820_blog.png','1615964820.png',NULL,'Aniket Agarwal','2020-04-29',NULL,NULL,NULL,'<p>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><strong>Where and how to to get to the t-rex in Bali?</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>How to get down at the Kelingking beach?</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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>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. 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. </p>\r\n\r\n<p><strong>What after you reach down to the beach?</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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<a href=\"https://www.ineedtrip.com/7-things-to-do-in-nusa-penida/\">things to do in Nusa Penida,</a> 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><strong>Conclusion</strong></p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Honeymoon Packages</a> 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>\r\n',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','1615966476_blog.png','1615966476.png',NULL,'Aniket Agarwal','2021-01-27',NULL,NULL,NULL,'<p>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. </p>\r\n\r\n<p>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><strong>Best Time for Travelling to Dubai on Honeymoon</strong></p>\r\n\r\n<p>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>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><strong>Best Offbeat Tours for Travelling to Dubai on Honeymoon</strong></p>\r\n\r\n<p>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><strong>For the Adventurer in You</strong></p>\r\n\r\n<p>Pic Creds: Instagram/ @erick_oliver</p>\r\n\r\n<p>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? </p>\r\n\r\n<p><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><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><strong>For the Sports Lover in You</strong></p>\r\n\r\n<p>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><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><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. </p>\r\n\r\n<p><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><strong>For the History Lover in You</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@tan_chik_love</p>\r\n\r\n<p>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><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><strong><em> 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><strong>For the Foodie in You</strong></p>\r\n\r\n<p>Pic Creds: Insta/@waelalteen</p>\r\n\r\n<p>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><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><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. </p>\r\n\r\n<p><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><strong>For Those Who Want Something Crazy</strong></p>\r\n\r\n<p>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><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. </p>\r\n\r\n<p><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><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>Why You Should Buy ineedtrip’s <a href=\"https://www.ineedtrip.com/dubai-packages/\">Honeymoon Packages for Dubai</a></h3>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages here.</a></p>\r\n',NULL,'2021-03-17 13:04:36','2021-03-17 13:04:36',NULL,1,'Dubai',0,0,'Travelling to Dubai on Honeymoon','Travelling to Dubai on Honeymoon? We\'ve got details that you would want to check out before planning the trip. Come have a look.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(19,'How to choose the best honeymoon package for Dubai','how-to-choose-the-best-honeymoon-package-for-dubai','1616585014_blog.jpg','1615966652.png',NULL,'Aniket Agarwal','2021-01-07',NULL,NULL,NULL,'<p>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. 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 package for Dubai.</p>\r\n\r\n<p><strong>Choosing the best honeymoon package for Dubai Based on Timing</strong></p>\r\n\r\n<p>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. 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. If you are someone who loves to shop, you must plan your Honeymoon between January to February, as it is when the <a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">Dubai Shopping Festival</a> is organized in the city. Dubai is indeed a synonym for luxury living. If you visit during this time period then our <a href=\"https://www.ineedtrip.com/tours/dubai-3-nights-and-4-days/\">Dubai package for DSF</a> (starting at just Rs 26,999) is the best honeymoon package for Dubai.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Choosing the best honeymoon package for Dubai Based on Budget</strong></p>\r\n\r\n<p>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>Let’s talk about the services you will get in Dubai under a budget.</p>\r\n\r\n<p><strong>1. 25000-35000 INR above:</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>2. Between 35,000 – 50,000 :</strong></p>\r\n\r\n<p>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><strong>Choosing the best honeymoon package for Dubai Based on Travel Company</strong></p>\r\n\r\n<p>To make your honeymoon worth remembering, ineedtrip will assure you of giving the best honeymoon packages for Dubai. 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. </p>\r\n\r\n<p>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><strong>Conclusion</strong></p>\r\n\r\n<p>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. 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? Check out <a href=\"https://www.ineedtrip.com/dubai-packages/\">our packages</a> now!</p>\r\n',NULL,'2021-03-17 13:07:33','2021-03-17 13:07:33',NULL,1,'',1,0,'best honeymoon 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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(20,'5 Activities in Dubai for History Lovers - A blog by ineedtrip','5-activities-in-dubai-for-history-lovers-a-blog-by-ineedtrip','1615966943_blog.png','1615966943.png',NULL,'Aniket Agarwal','2021-01-06',NULL,NULL,NULL,'<p>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><strong>Burj Khalifa</strong></p>\r\n\r\n<p>Creds: Instagram/@_nadavslom</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Al Fahidi Fort and Dubai Museum</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@tan_chik_love</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Dubai Heritage Village</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@kryt_elle</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Etihad Museum</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@gerryolearyphotography</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Crossroads of Civilizations Museum</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@themuseumgroupdubai</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Al Shindagha Museum</strong></p>\r\n\r\n<p>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/\"> here.</a></p>\r\n\r\n<p><strong>Jumeirah Beach</strong></p>\r\n\r\n<p>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>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">packages section</a> for details.</p>\r\n',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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(21,'Your shopping guide to Dubai Shopping Festival 2021','your-shopping-guide-to-dubai-shopping-festival-2021','1615967108_blog.png','1615967108.png',NULL,'Aniket Agarwal','2021-01-06',NULL,NULL,NULL,'<p>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 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. 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>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. </p>\r\n\r\n<h3><strong>Where does the Dubai Festival take place?</strong></h3>\r\n\r\n<h3>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. </h3>\r\n\r\n<p>1.Global Village</p>\r\n\r\n<p>2. Al Rigga Street</p>\r\n\r\n<p>3. Dubai Mall</p>\r\n\r\n<p>4. Night Souk</p>\r\n\r\n<p>5. Al Fahidi Fort</p>\r\n\r\n<p>6. Gold Souk</p>\r\n\r\n<p>7. The Layali Dubai Concert</p>\r\n\r\n<p>8. Promenade at Dubai Festival City</p>\r\n\r\n<p>9. DSF Desert Camp</p>\r\n\r\n<p>10. Asianet Film Awards</p>\r\n\r\n<p>11. Mall of the Emirates</p>\r\n\r\n<p>12. Deira City Centre</p>\r\n\r\n<p>13. Festival Waterfront Centre</p>\r\n\r\n<p>14. Lamcy Plaza</p>\r\n\r\n<p>15. Dragon Mart</p>\r\n\r\n<p>16. Mercato Shopping Mall</p>\r\n\r\n<p>17. Lulu Village</p>\r\n\r\n<p><strong>What are the things I should buy at Dubai Shopping Festival 2021?</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>GOLD JEWELLERY</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@syblanco</p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>PERFUMES AND FRAGRANCES</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@artisansofleisure</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>WATCHES</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>APPARELS</strong></p>\r\n\r\n<p>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 Bogi, Jack& 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. </p>\r\n\r\n<p><strong>GADGETS</strong></p>\r\n\r\n<p>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). For gadget shopping freaks this is the best time to grab the gadgets at the lowest prices. Want to know about the best places to visit in Dubai? Read our blog<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-dubai/\"> here.</a> </p>\r\n\r\n<p><strong>Is the Dubai Shopping Festival worth it?</strong></p>\r\n\r\n<p>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. 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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a> section right now! </p>\r\n',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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(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','1615967276_blog.png','1615967276.png',NULL,'Aniket Agarwal','2020-12-01',NULL,NULL,NULL,'<p>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. 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. 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. </p>\r\n\r\n<p>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 must do activities in Dubai<strong>.</strong> 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. </p>\r\n\r\n<p><strong>Skydive to Witness Dubai Skyline</strong></p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>Exhilarating Dune Bashing</strong></p>\r\n\r\n<p>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. 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. 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><strong>Hot Air Ballooning </strong></p>\r\n\r\n<p>Pic Creds: Instagram/ @erick_oliver</p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>Get Baffled at Dubai Museum of Illusion</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@maya_kawam</p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Wrapping Up</strong></p>\r\n\r\n<p>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. 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. Don’t miss to experience the must do activities in Dubai to rush your adrenaline and pump your heart to gulp down your fears and embrace enthrallment. If you want to book <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday</a> or <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>\r\n',NULL,'2021-03-17 13:17:57','2021-03-17 13:17:57',NULL,1,'Dubai',0,0,'Activities to Do in Dubai For Adventure Enthusiasts','Dubai is full of adventure & 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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(23,'The Best Dubai Package for Couples & Honeymooners','the-best-dubai-package-for-couples-honeymooners','1615967541_blog.png','1615967541.png',NULL,'Aniket Agarwal','2020-11-23',NULL,NULL,NULL,'<p>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 <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 <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 Dubai package for a honeymoon.</p>\r\n\r\n<p>Image Creds: instagram/@shutter_amc</p>\r\n\r\n<p><strong>Visa</strong></p>\r\n\r\n<p>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><strong>Travel</strong></p>\r\n\r\n<p>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><strong>Food</strong></p>\r\n\r\n<p>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><strong>Sightseeing</strong></p>\r\n\r\n<p>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><strong>Burj Khalifa + Dubai Mall Tour</strong></p>\r\n\r\n<p>Image creds: Instagram/@bestworldphotos2020</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Half-Day Dubai city tour</strong></p>\r\n\r\n<p>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><strong>Desert Safari with BBQ Dinner</strong></p>\r\n\r\n<p>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><strong>Dhow Cruise dinner</strong></p>\r\n\r\n<p>Image creds: Instagram/@royalgulftourism</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Abu Dhabi City tour</strong></p>\r\n\r\n<p>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>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai honeymoon package</a> list now, and book your best <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai tour package</a> for a honeymoon in advance, before the prices change.</p>\r\n',NULL,'2021-03-17 13:22:21','2021-03-17 13:22:21',NULL,1,'',0,0,'Dubai package for couples','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(24,'7 Best Places To Visit In Dubai For Couples - ineedtrip','7-best-places-to-visit-in-dubai-for-couples-ineedtrip','1615967974_blog.png','1615967974.png',NULL,'Aniket Agarwal','2020-11-17',NULL,NULL,NULL,'<p>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. 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. 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> </p>\r\n\r\n<p>However, if places to visit are cliche for you, and you are more of the “adventurous” types, here’s the list of the <a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">10 best things to do in Dubai.</a> 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. 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 7 best places to visit in Dubai and their attractions. </p>\r\n\r\n<p><strong>Burj Khalifa</strong></p>\r\n\r\n<p>Creds: Instagram/@_nadavslom</p>\r\n\r\n<p>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. What could be more romantic than standing at the tallest building in the world and experiencing the panoramic views of the desert country, Dubai?</p>\r\n\r\n<p>Exploring the observation deck on the 124th floor is awe-inspiring, urging you to behold the Dubai Skyline from a bird-eye view. 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. 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. Location: Sheikh Mohammed bin Rashid Blvd – Dubai Opening hours: 24 hours </p>\r\n\r\n<p><strong>Jumeirah Beach</strong></p>\r\n\r\n<p> 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. 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. 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. </p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">blog here.</a> 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 7 best places to visit in Dubai. Location: Jumeirah District Opening Hours: 7:30 AM to 10 PM every day except Thursday and Friday. </p>\r\n\r\n<p><strong>Palm Jumeirah</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@keith_nunes</p>\r\n\r\n<p>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. 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. Exploring Palm Jumeirah is incomplete if you miss aquatic activities like speed-boat rides, swimming with dolphins, and kayaking.</p>\r\n\r\n<p>You can also get soaked with pleasure and romance with your better half at the Aquaventure Waterpark. 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. </p>\r\n\r\n<p><strong>Miracle Garden</strong></p>\r\n\r\n<p>Pic Creds: Instagram/coral_travel_</p>\r\n\r\n<p>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. 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. Explore the lovely panorama while strolling down the park, heart-shaped arches, most importantly the flower-covered Airbus A380 and enjoy an enchanting time. Location: AI Barsha South 3, Dubai Opening Hours: 9 AM-5 PM </p>\r\n\r\n<p><strong>Desert Safari</strong></p>\r\n\r\n<p> 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. An overnight desert safari offers you an overwhelming feeling due to exciting dune bashing, quad biking, camel riding, dinner & more. (All our Dubai honeymoon packages have desert safari as a package inclusion, check them out <a href=\"https://www.ineedtrip.com/dubai-packages/\">here</a>, starting at just Rs 27,999).</p>\r\n\r\n<p>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. 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>So, don’t miss exploring the vastness of the desert in Dubai and seizing an unforgettable memory. 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. <strong>L</strong>ocation: Dubai & around 40 Km from Dubai Mall Opening Hours: Morning Safari 8:30 AM to 11:30 AM, Overnight Safari- 4 PM to 9 PM </p>\r\n\r\n<p><strong>Dubai Fountain</strong></p>\r\n\r\n<p>Pic Creds: Instagram/urlaubindubai</p>\r\n\r\n<p>Dubai Fountain a<strong> </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. 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. </p>\r\n\r\n<p>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. Location: Burj Lake, Sheikh Mohammed bin Rashid Blvd Opening hours: 5:45 PM to 11.30 PM </p>\r\n\r\n<p><strong>Dubai Marina & Dhow Cruise Dinner</strong></p>\r\n\r\n<p>Pic Creds: Instagram/@sinuheseppo</p>\r\n\r\n<p>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. 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.</p>\r\n\r\n<p>The Dhow cruise, an Arabian style boat, offers you countless moments to go intimate and take your love to eternity. 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. 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. Location: Dubai Marina, Dubai Opening hours: 8.30 PM to 10.30 PM 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> So, if you are already geared up to explore the city, then head out to our <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a> section right now! We will cover everything, from airfare, stay, visa to sightseeing and breakfast, starting at just Rs 27999 per person. </p>\r\n',NULL,'2021-03-17 13:29:35','2021-03-17 13:29:35',NULL,1,'Dubai',0,0,'Best Places To Visit In Dubai','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(25,'10 Best Hotels In Dubai For Couples - ineedtrip','10-best-hotels-in-dubai-for-couples-ineedtrip','1615969440_blog.png','1615969440.png',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’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’ll make your trip full of comfort and happiness. So, with this blog, we will introduce you to the best hotels in Dubai. We’ll also give you the link to our best Dubai packages, but dessert after dinner!</p>\r\n\r\n<p><strong>BURJ KHALIFA </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’s stay at Burj Khalifa because it is definitely one of the best hotels in Dubai. We’ve also included the Burj Khalifa tour in all our Dubai Packages, so if you plan on staying at a different hotel, you’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 – 6km </p>\r\n\r\n<p><strong>MARINE BEACH RESORT & 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. </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 </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. They have luxury upgraded rooms free wifi, flatscreen tv’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. </p>\r\n\r\n<p>Nearby Places: 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. 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 “island view” 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 & 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 “raffle” 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’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. </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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Honeymoon Packages</a> and <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages.</a> Moreover, we cover airfare, hotel, airport transfers, visa, sightseeing, and a lot more.</p>\r\n',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','1615969616_blog.png','1615969616.png',NULL,'Aniket Agarwal','2020-09-18',NULL,NULL,NULL,'<p>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><strong>What are the official guidelines from Dubai?</strong></p>\r\n\r\n<p>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>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>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. </p>\r\n\r\n<p>3. A thermal test upon arrival is mandatory.</p>\r\n\r\n<p>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>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>6. You must follow social distancing norms, wear masks, and wash hands regularly.</p>\r\n\r\n<p>7. One must also complete the Health Declaration Form before departing to Dubai.</p>\r\n\r\n<p>8. You must also download the COVID-19 DXB app before stepping out of the Dubai airport.</p>\r\n\r\n<p>These are the main guidelines by the Dubai government to ensure all tourists have a safe trip.</p>\r\n\r\n<p>If you need help in planning a trip to Dubai, check out our guide on <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><strong>Official guidelines for returning back to India</strong></p>\r\n\r\n<p>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 <a href=\"http://www.newdelhiairport.in/\">www.newdelhiairport.in</a> stating their safe health. Upon arrival, each passenger will have to undergo a thermal test. He/she will also have to quarantine for 14 days. 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/\"> </a><a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">must-do activities</a> in Dubai.</p>\r\n\r\n<p><strong>What should you do?</strong></p>\r\n\r\n<p>It is given that you will have to follow all these official guidelines. But there’s something else that we can do too: </p>\r\n\r\n<p>1. Keep sanitizers handy always.</p>\r\n\r\n<p>2. Maintain social distancing.</p>\r\n\r\n<p>3. Wear gloves where possible.</p>\r\n\r\n<p>4. Wear face masks.</p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages </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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">here.</a></p>\r\n',NULL,'2021-03-17 13:56:57','2021-03-17 13:56:57',NULL,1,'Dubai',0,0,'Guidelines for Dubai after 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.','','',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. </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. </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. </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. </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. </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 <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> 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. </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. </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 <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 </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 </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. </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, 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. </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 <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> 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 <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> 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','1615969766_blog.png','1615969766.png',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p>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>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><strong>When To Visit</strong></p>\r\n\r\n<p>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. 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. So our take is that you keep checking for the official dates and plan on spending more time and less money in Dubai. </p>\r\n\r\n<p><strong>Where To Shop</strong></p>\r\n\r\n<p>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>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. 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><strong>The Dubai Mall</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages</a> 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><strong>The Souks</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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>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. 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 <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><strong>Some other places where you can shop during the Dubai Shopping Festival are:</strong></p>\r\n\r\n<ol>\r\n <li>the Ibn Battuta Mall </li>\r\n <li>The Global Village</li>\r\n <li>Al Rigga Street</li>\r\n <li>Al Fahidi For</li>\r\n <li>Promenade at Dubai Festival City </li>\r\n <li>DSF Desert Camp</li>\r\n <li>Al Seef Street</li>\r\n <li>Mall of the Emirates</li>\r\n <li>Deira City Centre</li>\r\n <li>Festival Waterfront Centre</li>\r\n <li>Dragon Mart and more. </li>\r\n</ol>\r\n\r\n<p><strong>What To Shop</strong></p>\r\n\r\n<p>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, make a list or just set a budget.</p>\r\n\r\n<p><strong>Apparel</strong></p>\r\n\r\n<p>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><strong>Jewellery</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Gadgets</strong></p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">top 10 things to do in Dubai</a> if you want your trip to be full of fun.</p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a> are on huge discounts. So book your packages now to save more money for shopping in Dubai.</p>\r\n',NULL,'2021-03-17 13:59:27','2021-03-17 13:59:27',NULL,1,'',0,0,'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\":[\"\"],\"detailPackages\":[\"\"]}'),(29,'How To Make the Perfect Dubai Trip Plan From India | ineedtrip','how-to-make-the-perfect-dubai-trip-plan-from-india-ineedtrip','1616594575_blog.jpg','1615969871.png',NULL,'Aniket Agarwal','2021-04-27',NULL,NULL,NULL,'<p>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. 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, 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><strong>Choosing the time of the visit and managing pre-bookings</strong></p>\r\n\r\n<p>To make a perfect 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. </p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages</a> 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><strong>Dubai Trip Plan for an exhilarating sightseeing experience</strong></p>\r\n\r\n<p>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 <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><strong>Planning to visit Dubai Mall, Burj Khalifa, and Dubai Fountain</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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><strong>Palm Jumeirah, Beach and Souks</strong></p>\r\n\r\n<p>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. Want to know about how and what to shop at the souks? Read our guide on <a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">shopping in Dubai.</a></p>\r\n\r\n<p><strong>Adventure sports and Dhow cruise Dinner</strong></p>\r\n\r\n<p>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. 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 <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><strong>Desert Safari</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>What does ineedtrip offer?</strong></p>\r\n\r\n<p>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 <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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages </a>section to find blockbuster deals and discounts. </p>\r\n',NULL,'2021-03-17 14:01:12','2021-03-17 14:01:12',NULL,1,'',1,0,'Dubai Trip Plan','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.','','[\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(30,'Add thrill to honeymoon try adventure sports in Dubai | ineedtrip','add-thrill-to-honeymoon-try-adventure-sports-in-dubai-ineedtrip','1615970001_blog.png','1615970001.png',NULL,'Aniket Agarwal','2020-04-20',NULL,NULL,NULL,'<p>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, let’s have a look at some of the 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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a> for you.</p>\r\n\r\n<p><strong>Burj Khalifa Base Jump</strong></p>\r\n\r\n<p>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 ineedtrip.</p>\r\n\r\n<p><strong>Skydiving Over Palm Jumeirah</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Shark Diving in Dubai Mall</strong></p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>Flyboarding</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Dune Bashing</strong></p>\r\n\r\n<p> </p>\r\n\r\n<p>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 & 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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a> are made for you. With our <a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai honeymoon packages</a> and <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. </p>\r\n',NULL,'2021-03-17 14:03:21','2021-03-17 14:03:21',NULL,1,'Dubai',0,0,'best adventure sports in 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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(31,'DUBAI Top 10 Things To Do In Dubai For Couples | ineedtrip','dubai-top-10-things-to-do-in-dubai-for-couples-ineedtrip','1615970134_blog.png','1615970134.png',NULL,'Aniket Agarwal','2020-04-14',NULL,NULL,NULL,'<p>If there’s one city that offers luxury for all and is truly an all-in-one travel destination, it’s Dubai. With an exquisite skyline, alluring beaches, and an ultra-modern lifestyle, Dubai is the ‘Kohinoor’ 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. In this blog, we’ll tell you the top <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’re sure after reading this blog, you would want to plan your trip asap. To ensure a great trip <strong>ineedtrip</strong> has given links to exclusive <a href=\"https://www.ineedtrip.com/dubai-packages/\"><strong>Dubai honeymoon packages</strong></a> and <strong><a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages</a></strong> only for you. </p>\r\n\r\n<p>Let’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’t that excite you? Bonus: If either of you is scared of heights, you’ll be holding each other very tightly, the moment you look down, you’ll have goosebumps. One more thing, if you plan your honeymoon to Dubai with <strong>ineedtrip</strong>, you’ll be able to get to Burj Khalifa free as it’s included in all of the Dubai packages. </p>\r\n\r\n<p><strong>Things to do:</strong> Be Awestruck by Dubai’s skyline, Get pictures, take the Burj Khalifa tour</p>\r\n\r\n<p><strong>How to reach:</strong> 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’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’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’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. </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’s your chance to a snowy getaway. Ski Dubai is much more than a skiing slope, it’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’re not up for skiing. Here’s the best part, remember bumping cars? You’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’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> 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’s biggest mall</strong></p>\r\n\r\n<p>The Dubai Mall is the biggest mall in the world. It’s so vast that it’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’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 ‘Hysteria,’ 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’ll be all</p>\r\n\r\n<p><strong>How to reach</strong>: Take the metro to the “Dubai Mall’ station</p>\r\n\r\n<p><strong>Witnessing Earth’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’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’t want to take the risk of getting mauled.</p>\r\n\r\n<p>You’ll enter the 10 million liter tank in a cage wearing your snorkeling gear, you’ll be as close to the sharks and other fishes as you would while diving, but since you’ll be in a cage, it will be safer.</p>\r\n\r\n<p><strong>Things to do:</strong> Shark Feeding, Shark Diving, Cage Snorkeling </p>\r\n\r\n<p><strong>How to reach:</strong> Take the metro to the “Dubai Mall’ 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’s Dubai honeymoon packages, you’ll get to experience the thrill of dune bashing and desert safari for free. </p>\r\n\r\n<p><strong>Things to do:</strong> Dune bashing, Quad bike riding, Sandboarding, Camel Riding</p>\r\n\r\n<p><strong>How to reach</strong>: You don’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’ve had the feels of visiting Manali (at ski Dubai) and Jaisalmer (at Sahara safari), it’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’ll be strapped to a big E shaped inflatable tied to a speedboat. It’s like parasailing, but the fun part is that unlike parasailing, you wouldn’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> 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’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 “Zindagi Na Milegi Dobara”. you can cast your partner as the lead of the story if you want. </p>\r\n\r\n<p><strong>Things to do:</strong> Take all the 3D, and 4D rides, Motiongate park, and Legoland are nearby</p>\r\n\r\n<p><strong>How to reach:</strong> 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’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’ll be kind of traveling to 100 countries. When people ask, “where did you go for the honeymoon?”, you can say world tour. </p>\r\n\r\n<p><strong>Things to do:</strong> Attending Live concerts, trying local cuisines, shopping local art and visiting the circus</p>\r\n\r\n<p><strong>How to reach:</strong> Public buses, cab or taxi, there’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’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’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> Just enjoy the music and the light show</p>\r\n\r\n<p><strong>How to reach:</strong> 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 <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’ve made up your mind to travel to Dubai and do all these activities, here’s our <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/\"> Dubai honeymoon packages</a> will take you on the tour of Burj Khalifa and get you to a thrilling desert safari. We’ll also arrange a dinner on the dhow cruise to make your honeymoon more memorable. </p>\r\n\r\n<p>Let’s go forward with customizing your <a href=\"https://www.ineedtrip.com/dubai-packages/\">package.</a></p>\r\n',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','1615970248_blog.png','1615970248.png',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 ADDRESSES UNTIL 2015. Sounds unbelievable right? It is true, Dubai had No addresses, zip codes and postal system until 2015. But then how would people deliver something?’, well, the majority of directions would go like “behind that black-colored building, the third house with a cruizer parked outside”, which sounds a lot like our own country. The government finally launched a system called <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. Why do people love Dubai so much, and how come it is one of the most searched tourist destinations? Dubai caters to all sorts of tourists, whether it’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. <em>We know your next question, “but why should I visit the place?”</em></p>\r\n\r\n<p>Why? Because you’ll get a once in a lifetime experience of the class, beauty and authentic culture of the gulf. “That’s okay, but what else?” 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. Before you start putting together a holiday plan to Dubai, just a gentle reminder that ineedtrip 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 & get the best Dubai Package out there. </p>\r\n\r\n<p>Watched ‘Tom Cruise’, climbing Burj Khalifa in the movie ‘MI4’? Why don’t you take a tour of the hotel. Go to the top floor and have a look at the magnificent skyline of Dubai. (We’ll get you there for free, <a href=\"https://www.ineedtrip.com/dubai-packages/\">book now</a>). 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’s largest mall. 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/\"> top 10 things to do in Dubai.</a></p>\r\n\r\n<p><strong>What’s more?</strong></p>\r\n\r\n<p>You can see the world’s biggest underwater aquarium and also go for a desert safari in Sahara and roll down those sand dunes. If you love snow, Dubai’s got that covered too, you can go skiing (skills don’t matter, just enjoy the ambiance *winks*) at ‘Ski Dubai’ named as the world’s best indoor ski place for 3 years in a row. Want someone to help you plan the perfect Dubai trip? Read our blog on <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> 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’s finest malls and restaurants, Dubai’s the place for you. It has so much to offer that even a month’s visit doesn’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 <a href=\"https://www.ineedtrip.com/dubai-packages/\">our prices and package inclusions</a>, we’re sure you won’t have to think twice before planning a trip to Dubai. </p>\r\n',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','1615994299_blog.png','1615994299.png',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>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. Before we get to the good part, a little insight into what makes these beaches glow? </p>\r\n\r\n<p>So, what’s the deal with these ‘glowing beaches’? 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? As Shakespeare said, ‘What’s in a name?’, we won’t bother with the terminology here, let’s get straight to the locations.</p>\r\n\r\n<h2><strong>Where are the world's so-called 'glowing beaches'?</strong></h2>\r\n\r\n<p>Does this image look edited? IT’S NOT!</p>\r\n\r\n<p>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 holiday trip to one of them. </p>\r\n\r\n<p>You ready? Here we go! </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 ‘glowing beaches’. 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’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. </p>\r\n\r\n<p><strong>Reethi Beach, Maldives</strong></p>\r\n\r\n<h2><strong>Where are the world's so-called 'glowing beaches'?</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’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 in the Maldives. </p>\r\n\r\n<p>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 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. 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. 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 ‘phytoplankton.’ 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.</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 ‘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 ineedtrip have customized some amazing Bali and Honeymoon Packages for you. They are loaded with offers and incredible deals that you’ll not find anywhere else. What are you waiting for? </p>\r\n\r\n<p> </p>\r\n',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','1615996985_blog.png','1615996985.png',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<article class=\"btPostSingleItemStandard gutter noPhoto post-21266 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; font-family: Barlow, Arial, Helvetica, sans-serif; font-size: 16px;\"><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=\"21266\" class=\"elementor elementor-21266\" 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-21a03e51 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-id=\"21a03e51\" data-element_type=\"section\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; 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-d6b7448 elementor-column elementor-col-100 elementor-top-column\" data-id=\"d6b7448\" 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-40a0133d elementor-widget elementor-widget-text-editor\" data-id=\"40a0133d\" 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; 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; text-align: justify;\"><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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 <strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">best travel destination</strong> in the world, has such cheap currency! Quite shocking right? Want to know another fact? 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 </span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali trip</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> in the cheapest way possible with<strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> ineedtrip</strong>.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-21275 size-full\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1.jpg\" alt=\"Best Travel Destination In The World Has World\'s Third Weakest Currency\" width=\"2200\" height=\"1464\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1.jpg 2200w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-640x426.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-1280x852.jpg 1280w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-768x511.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-1536x1022.jpg 1536w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-2048x1363.jpg 2048w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-800x533.jpg 800w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-320x213.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/bali1-600x399.jpg 600w\" sizes=\"(max-width: 2200px) 100vw, 2200px\" 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><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; text-align: center;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How rich you’ll feel in the world’s best travel destination?</b></h3><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. 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? Let’s have a look.</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; text-align: center;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Visit every attraction within a tight budget!</b></h3><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. Well, here’s good news, <strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">ineedtrip</strong> offers you the best holiday packages to Bali with the cheapest prices and an amazing itinerary. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">If you want to know more about the places and the budget first, let’s go straight to it.</span></p><h4 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;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Kelingking Beach</strong></h4><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/trex.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-21273 size-full\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/trex.jpg\" alt=\"Best Travel Destination In The World Has World\'s Third Weakest Currency\" width=\"960\" height=\"640\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/trex.jpg 960w, https://www.ineedtrip.com/wp-content/uploads/2020/04/trex-640x427.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/trex-768x512.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/trex-800x533.jpg 800w, https://www.ineedtrip.com/wp-content/uploads/2020/04/trex-320x213.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/trex-600x400.jpg 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" 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=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><h4 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;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Mount Batur</strong></h4><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/batur.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone size-full wp-image-21270\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/batur.jpg\" alt=\"\" width=\"1024\" height=\"683\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/batur.jpg 1024w, https://www.ineedtrip.com/wp-content/uploads/2020/04/batur-640x427.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/batur-768x512.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/batur-800x533.jpg 800w, https://www.ineedtrip.com/wp-content/uploads/2020/04/batur-320x213.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/batur-600x400.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" 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=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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 Bali trip would be incomplete if you miss this one.</span></p><h4 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;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Sekumpul Waterfalls</strong></h4><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone size-full wp-image-21274\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1.jpg\" alt=\"\" width=\"750\" height=\"562\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1.jpg 750w, https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1-640x480.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1-320x240.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/sekumpul-1-600x450.jpg 600w\" sizes=\"(max-width: 750px) 100vw, 750px\" 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=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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).<br style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">READ: <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; color: rgb(25, 118, 188); box-shadow: none;\">7 BEST PLACES TO VISIT IN BALI</a></span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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 style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> ineedtrip</strong>‘s <a href=\"https://www.ineedtrip.com/bali-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; color: rgb(25, 118, 188); box-shadow: none;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">customized holiday</strong> and <strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">honeymoon packages</strong></a> 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!</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Till next time!</i></p><div><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></i></div></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><section class=\"btComments gutter\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-family: Barlow, Arial, Helvetica, sans-serif; font-size: 16px;\"><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>',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\":null,\"detailPackages\":[\"\"]}'),(35,'7 Best Places To Visit in Bali For Honeymoon ','7-best-places-to-visit-in-bali-for-honeymoon-','1616133756_blog.png','1616133756.png',NULL,'Aniket Agarwal','2020-04-08',NULL,NULL,NULL,'<p>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 best places to visit in Bali 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. </p>\r\n\r\n<p>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> </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> </strong>Bali honeymoon packages by ineedtrip. </p>\r\n\r\n<h3><strong>The Best Time to Visit Bali</strong></h3>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Weather Wise</strong></p>\r\n\r\n<p>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><strong>Crowd Wise</strong></p>\r\n\r\n<p>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>If you want to check some pre-designed packages, keeping in mind both the crowd and weather, explore our honeymoon packages to Bali.</p>\r\n\r\n<h3><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>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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<h3><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>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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<p>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. </p>\r\n\r\n<h3><strong>Mount Batur</strong></h3>\r\n\r\n<p>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 honeymoon to Bali.<strong> </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><strong>Nearby things to do</strong>: Wander around the Volcano Crater, Hot Springs</p>\r\n\r\n<p><strong>How to reach:</strong> 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><strong>Things to carry:</strong> Courage<strong>, </strong>Flashlight, Hiking Shoes, Rain Jacket, Snacks</p>\r\n\r\n<h3><strong>Nusa Islands</strong></h3>\r\n\r\n<p>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 <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. </p>\r\n\r\n<p>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 <em>Manta Rays.</em> Here are the <a href=\"https://www.ineedtrip.com/7-things-to-do-in-nusa-penida/\">Top 7 things to do in Nusa Penida </a>if you feel like exploring the island.</p>\r\n\r\n<p><strong>Things to do: </strong>Kelingking viewpoint and Beach, Snorkeling, Crystal Bay, Devil’s Tears</p>\r\n\r\n<p><strong>How to reach: </strong>Speed boats or local boats from ‘Sanur’ in Bali. Journey time 1-2 hours</p>\r\n\r\n<h3><strong>Uluwatu Temple Cliff</strong></h3>\r\n\r\n<p>Photo by <a href=\"https://unsplash.com/@omerrana?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Omer Rana</a> on <a href=\"https://unsplash.com/s/photos/nusa-island?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></p>\r\n\r\n<p>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. 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. </p>\r\n\r\n<p><strong>Nearby things to do:</strong> Visit the Uluwatu Temple and cliff, catch the sunset Single fin beach.</p>\r\n\r\n<p><strong>How to reach: </strong>There is no public transport to get here, so you’ll have to book a cab.</p>\r\n\r\n<p><strong>Things to carry: </strong>Excitement<strong> and </strong>Beachwear, if you plan to swim.</p>\r\n\r\n<h3><strong>Gili Islands</strong></h3>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Things to do</strong>: Snorkeling at Gili Meno, Scuba Diving, Capturing Sunsets</p>\r\n\r\n<p><strong>How to reach:</strong> 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><strong>Things to carry:</strong> Enthusiasm and Beachwear</p>\r\n\r\n<h3><strong>Tegalalang Rice Terrace</strong></h3>\r\n\r\n<p>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 Sekumpul Waterfalls<strong>,</strong> which are a cluster of seven waterfalls. Both of these places can be visited on the same day. And ineedtrip 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! </p>\r\n\r\n<p><strong>Nearby things to do: </strong>Tour of Ubud Monkey Forest, Goa Gajah</p>\r\n\r\n<p><strong>How to reach: </strong>It’s a central town, so either catch a bus or book a taxi.</p>\r\n\r\n<p><strong>Things to carry:</strong> As per the convenience</p>\r\n\r\n<h3><strong>Kuta</strong></h3>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong>Things to do:</strong> Visiting Kuta Beach, Kuta Square</p>\r\n\r\n<p><strong>How to reach: </strong>10 km ride on Cab or bus from airport </p>\r\n\r\n<h3><strong>Lovina Beach</strong></h3>\r\n\r\n<p>Okay, this might be an unpopular opinion, but Lovina Beach is one of the <strong><em>best places to visit in Bali on honeymoon. </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. 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. </p>\r\n\r\n<p><strong>Things to do:</strong> Dolphin Spotting, Water sports</p>\r\n\r\n<p><strong>How to reach</strong>: Cab or public transport from Kuta (2 hours drive)</p>\r\n\r\n<h3><strong>Conclusion</strong></h3>\r\n\r\n<p>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 <a href=\"https://www.ineedtrip.com/bali-packages/\"><strong>Bali honeymoon packages by ineedtrip</strong></a> that ensure the best prices and top-notch itinerary.</p>\r\n\r\n<p>That’s all, folks!</p>\r\n',NULL,'2021-03-17 21:48:23','2021-03-17 21:48:23',NULL,1,'',0,0,'Best Places To Visit in Bali For Honeymoon','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','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(36,'5 best places to shop in Mauritius','5-best-places-to-shop-in-mauritius','1616048742_blog.png','1616048742.png',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 <a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">must-visit places in Mauaritus</a> 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’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’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’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 <a href=\"https://www.ineedtrip.com/mauritius-packages/\">packages</a> or contact us straight away. Hope your trip is full of enjoyment and fun activities.</p>\r\n',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-','1616049240_blog.png','1616049240.png',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’s heaven. The beautiful island offers a good mix of Indian, African, meditation, and French 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 <a href=\"https://www.ineedtrip.com/5-best-things-to-do-in-maldives-for-honeymoon/\">Maldives</a>, you’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/\"> 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’s not one of those fancy restaurants, the restaurant-cafe has a lot of greenery and has that raw-Mauritius 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 <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> 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. </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>\r\n',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','1616049555_blog.png','1616049555.png',NULL,'Aniket Agarwal','2020-10-21',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Mauritius is a beautiful island country located in the Indian ocean. It’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 <a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">here.</a> However, in this blog, we’ll talk about the must-try dishes in Mauritius. Trust us, you don’t just want to want to miss out on Mauritius’s delicacies. You will find a large variety of food items in Mauritius.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"> </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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Curries</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’s no particular spot to try curry in Mauritius, you’ll get a lot of variety all over the place. So who would not love to have some Indian taste in an outside country? </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Sea Food</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How can you not have seafood when you’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’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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bol Renverse</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Any Biryani lovers out there? You\'ll love this dish, even if you don’t like biryani, you must try this. (but who doesn’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. </span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Boulettes</strong></h5><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;\"><strong 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Boulettes is one most amazing dishes in Mauritius. The name is weird we admit and people often mistake it for roulette but it’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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></strong></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Coconut Cakes</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Time for some dessert!</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The people in Mauritius love coconuts and that’s why you’ll find coconut water, coconut chutney, coconut Cookies, & 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’t worry there’s no connection to tomatoes. Do tell us how was it once you’re back from the trip.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">After reading this blog, you will not find any difficulty what food to have in 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’re looking for the cheapest holiday and honeymoon packages for Mauritius, head out to our <a href=\"https://www.ineedtrip.com/mauritius-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">Mauritius packages</a> section. You’ll find pre-designed packages and an option to customize your own package. We promise to be there with you for support 24×7. </span></p></b></h5>',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\":null,\"detailPackages\":[\"\"]}'),(39,'5 Best Beaches In Mauritius for Couples','5-best-beaches-in-mauritius-for-couples','1616049744_blog.png','1616049744.png',NULL,'Aniket Agarwal','2020-10-20',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. 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/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> seven-colored earth</a> and the<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> underwater waterfall</a>. But, for now, we’re going to talk about the 5 best beaches to visit in Mauritius for couples.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"> </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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">ILE AUX CERFS BEACH</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">TAMARIN BEACH -BLACK SAND BEACH</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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 “Surfer Beach”. 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’s one of the perfect beaches and best for the people who love nature.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">GRAND BAY PUBLIC BEACH</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">GRIS GRIS BEACH</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"> </p></b></h5><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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">FLIC EN FLAC BEACH</b></h5><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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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 <a href=\"https://www.ineedtrip.com/mauritius-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">Mauritius honeymoon packages</a> section. We’ve got some blockbuster deals for you, if you like participating in travel contests do check out our <a href=\"https://www.instagram.com/i_need_trip/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">Instagram handle. </a></p></b></h5>',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 & 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','1616050538_blog.png','1616050538.png',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. 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 <a href=\"https://www.ineedtrip.com/maldives-packages/\">honeymoon packages</a> offered by us for both these destinations.</p>\r\n\r\n<p><strong>Best places to visit & 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’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 <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—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. Chamarel has one more beautiful sight, known as the Seven-Colored Earth, it’s just as amazing as the name. Read more about the <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. 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’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’t mentioned some of the overcrowded but popular places if you want to read more about them, check out this <a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">blog. </a>If Mauritius has excited you, have a look at the<a href=\"https://www.ineedtrip.com/mauritius-packages/\"> best </a>honeymoon packages for Mauritius 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> </p>\r\n\r\n<p><strong>Best places to visit & things to do in Maldives: </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. </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’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.</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’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.</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’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. </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, visit our <a href=\"https://www.ineedtrip.com/5-best-places-to-visit-in-maldives-for-honeymoon/\">blog</a>.</p>\r\n\r\n<p>We’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 <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 <a href=\"https://www.ineedtrip.com/maldives-packages/\">honeymoon packages</a> 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.</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> </p>\r\n\r\n<p> </p>\r\n',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','1616590178_blog.jpg','1616050846.png',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 ‘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. </p>\r\n\r\n<p>In this blog by ineedtrip, we have handpicked five safest and best honeymoon destinations from India to make 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.</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 </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. 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.If newly married couples want privacy, there are plenty of gorgeous places where couples can peacefully spend their time. </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’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. Read more about Bali in this 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></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’ll have to travel by bus for more than 24 hours. 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.</p>\r\n\r\n<p><strong>Mauritius </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. 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. 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. If you want to go out shopping, Grand Baie Bazaar, Goodlands, and Quatre bones are the famous shopping places in Mauritius. The seven-colored earth, a wonder of its own is located in the southern part of Mauritius, this place beside the underwater waterfall attracts photographers and nature enthusiasts from all over the world.</p>\r\n\r\n<p>Read more about the best things to do in Mauritius <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. </p>\r\n\r\n<p> <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 <a href=\"https://www.ineedtrip.com/5-best-places-to-shop-in-maldives/\">best places to visit in Maldives</a> to plan your trip and our blog on the <a href=\"https://www.ineedtrip.com/5-best-things-to-do-in-maldives-for-honeymoon/\">best things-to-do in Maldives</a> 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/\"> must visit places in Singapore</a>, read our blog. Oh, and did we mention the beaches of <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’re into Hollywood, you can visit the universal studios and if you want to try your hands on safe skydiving then help yourself with <a href=\"https://www.ineedtrip.com/skydiving-in-singapore-sep-skydive-without-jumping-from-a-plane-oh-yes/\">indoor skydiving at ifly Singapore. </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. 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. 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’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 <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 <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’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.</p>\r\n',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?','1616051153_blog.png','1616051153.png',NULL,'Aniket Agarwal','2020-07-15',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’s first talk over the beauty of Mauritius.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’t think there’s a place in Mauritius that “isn’t good”. Famous for the picturesque beaches and lively corals, Mauritius gives a unique sense of completeness. It’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’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. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Let’s address the monster in the room now! </span></p><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Where is the Underwater Waterfall located?</b></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 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. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 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.</span></p><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">What’s the mystery?</b></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 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’s just an illusion. Why did we call it an illusion? Because, ‘the truth sometimes lies far behind the naked eye’. 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’s the mystery.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">There’s another such mysterious location in Mauritius that is popularly called “<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">seven-colored earth</a>” and you can read more about it by clicking on the link.</span></p><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">What else?</b></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 it’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. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 the pictures in this blog have excited you and have given you one more reason to plan a trip to Mauritius. Here’s the deal! We at ineedtrip will help you take a complete tour of Mauritius at an</span><a href=\"https://www.ineedtrip.com/mauritius-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> unbelievable price</a><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> and list of inclusions. Our</span><a href=\"https://www.ineedtrip.com/mauritius-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> <span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">pre-designed packages</span></a><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"> are made by experts who know the place in and out and know what are the <a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">things to do</a> and</span><a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> <span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">places to visit.</span></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: 16px;\"><a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-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;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></span></a></p>',NULL,'2021-03-18 12:35:54','2021-03-18 12:35:54',NULL,1,'',0,0,'Underwater waterfall in Mauritius','Sounds strange & 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\":null,\"detailPackages\":[\"\"]}'),(43,'Top 3 unique things to do in Mauritius after Covid-19','top-3-unique-things-to-do-in-mauritius-after-covid-19','1616051337_blog.png','1616051337.png',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’s wildness and vividness. A single disease bought even the top nations down on their knees. But there’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’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. 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’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’t the site look mesmerizing? This picture is taken from a satellite. What you’re seeing is popularly known as the underwater waterfall of Mauritius. However, this is an architectural wonder created by nature itself, it’s not a waterfall, it’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. You can read more about the <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’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. If you want to know about the beaches and other stuff that everyone does you can visit our blog on the <a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">best places</a> 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’ll make you believe that sand doesn’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’s also a mystery to the place, even if you mix the different colored sand, it’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. We’ve also written a separate blog on the seven-colored earth, you can <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 </strong></p>\r\n\r\n<p>This is exclusive to Singapore experience. If you’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’s a combination of Submarine and a scooter. You’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’s fun and quite enthralling to ride on the sub-scooter but sadly if you’re taller than 2 meters, it’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’s a little costly. You’ll have to pay 90 Euros per person to ride the Scooter together with your partner. Trust us, it’s TOTALLY WORTH IT! If you want to find out about the best places to visit in Mauritius, <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’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 <a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius packages</a> 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. </p>\r\n\r\n<p> </p>\r\n',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?','1616051520_blog.png','1616051520.png',NULL,'Aniket Agarwal','2020-04-21',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Great Choice! Mauritius is perfect for a honeymoon. We’re glad that you’ve landed here, we’ll help you plan a honeymoon trip to Mauritius. We have answered all the when’s and how’s here. Before we dive into the how-to plan a honeymoon trip to Mauritius part, here’s a little info about Mauritius.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; 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 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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Without further wait, let’s go through the things that’ll help you make a perfect plan for the Mauritius trip.</span></p><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">When to travel to Mauritius from India?</b></h4><h4 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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’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’t even be needing ACs. Most tourists prefer visiting during the summers when watersports are booming and they can relax on the lively beaches.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">But, we Indians want to travel to a destination, where we don’t have to face the extreme heat, right? Mauritius is perfect because our summers and Mauritius’ 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’re planning to visit with the “Mrs”, winters will be the ideal time as it’s less crowded and you’ll get more privacy.</span></p></b></h4><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Visa Handling</b></h4><h4 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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’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.</span></p></b></h4><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to handle bookings and returns?</b></h4><h4 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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’ll take just 6 hours to reach there in a direct flight. You can also travel to Mauritius on a ship if you’ve got the time and budget. Now, that you know how you can reach there let’s get to the booking part.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’ll have a plan that you can stick to and you don’t have to waste time deciding your itinerary every day. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">With Mauritius honeymoon packages by ineedtrip, your stay will be luxurious and fulfilling. We’ll take care of your breakfast and dinner so that you don’t have to look for restaurants every day. We’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’s talk about that. </span></p></b></h4><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Local transportation in Mauritius and dinner date?</b></h4><h4 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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’ve had a little too much after those late-night parties. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p></b></h4><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to plan sightseeing and other activities?</b></h4><h4 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;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Choosing between places to visit and places to skip can be daunting. You wouldn’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’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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’ll get a full-day excursion to this beautiful island. </span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">Seven Colored Earth:</a> 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.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Pamplemousses Botanical Garden: With over 650 species of plants and trees to explore, this place is best to explore nature’s beauty. You can go for that special dinner date after a tour of this place or maybe go for a late-night party.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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 </span><a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">best places to visit in Mauritius. </span></a></p></b></h4><h4 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: 2.125em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Summing it up</b></h4><h4 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;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"><a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"></a></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-family: Roboto, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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’t you head over to our Mauritius honeymoon packages? We’ve some mind-blowing discounts that you wouldn’t want to miss. Our list of inclusions will make your jaw drop. We bet you won’t be able to stop imagining yourself chilling in Mauritius. Let’s get there <a href=\"https://www.ineedtrip.com/mauritius-packages-limited/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">now</a>!</span></p></b></h4>',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\":null,\"detailPackages\":[\"\"]}'),(45,'Top 5 places To Visit In Mauritius For Honeymoon','top-5-places-to-visit-in-mauritius-for-honeymoon','1616051829_blog.png','1616051829.png',NULL,'Aniket Agarwal','2020-04-15',NULL,NULL,NULL,'<p>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 5 best places to visit in Mauritius for honeymoon 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 <strong><a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius honeymoon packages</a> </strong>from 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><strong>Ile Aux Cerfs</strong></p>\r\n\r\n<p>We’ll start off with the best, Ile Aux Cerfs is an island that you would not want to miss out on your trip to Mauritius. 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><strong><strong>Things to do: </strong></strong>Snorkeling, Scuba Diving, Parasailing, Undersea Walk</p>\r\n\r\n<p><strong><strong>How to reach: </strong></strong>A boat taxi from 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><strong>Chamarel Waterfalls</strong></p>\r\n\r\n<p>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><strong><strong>Things to do: </strong></strong>Hiking, Photography, Visiting the seven-colored earth</p>\r\n\r\n<p><strong><strong>How to reach:</strong> </strong>Hire a taxi or cab to get there or take a guided tour</p>\r\n\r\n<p><strong>Seven Colored Earth</strong></p>\r\n\r\n<p>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>We like this place so much that we have written a separate blog on it, you can <a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">read it here.</a></p>\r\n\r\n<p><strong><strong>Things to do: </strong></strong>Visit Chamarel waterfall, Curious Corner of Chamarel</p>\r\n\r\n<p><strong><strong>How to reach:</strong> </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><strong>Pereybere beach</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong><strong>Things to do: </strong></strong>Windsurfing, night parties, and deep-sea fishing</p>\r\n\r\n<p><strong><strong>How to reach: </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><strong>Pamplemousses botanical garden</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p><strong><strong>Things to do:</strong> </strong>Explore the gardens and eat at the famous Chez Tante Athalie</p>\r\n\r\n<p><strong><strong>How to reach:</strong> </strong>The place is located in Port Louis and you can easily catch a bus to get there</p>\r\n\r\n<p>Here’s a bonus place – “<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">underwater waterfall</a>“, read more about it by clicking on the link.</p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p>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. </p>\r\n\r\n<p>Now that we are here, why don’t you customize a Mauritius honeymoon package for yourself? Or you can choose from ineedtrip’s custom-designed honeymoon packages to get some crazy deals and discounts. Come, let’s book a <a href=\"https://www.ineedtrip.com/mauritius-packages/\">package</a> for you.</p>\r\n\r\n<p>This was our list of best places to visit in Mauritius for honeymoon. If you have any more places you would like us to add, tell us about them.</p>\r\n\r\n<p> </p>\r\n\r\n<p> </p>\r\n',NULL,'2021-03-18 12:47:10','2021-03-18 12:47:10',NULL,1,'',0,0,'Places to visit in Mauritius for honeymoon','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.','','',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','1616052062_blog.png','1616052062.png',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>What if we told you that there exists another earth called ‘the seven colored earth’, which is just as beautiful as the one we live on? <em>Where is it? Is it in our own galaxy, or is it far away?</em> Answer to these and many similar questions is, that to visit The Seven Colored Earth, you won’t even have to leave this ‘Earth,’ <em>sounds confusing?</em> Let’s clear it up. </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 ‘another Earth’ or ‘The Seven Colored Earth’ is one of those nature’s wonders. It’s not another planet; it’s a place which you can visit if you plan a trip to Mauritius (all the more reason to visit it). This ‘Seven Colored Earth,’ is located in the Chamarel Plains in south-western Mauritius. But you didn’t come this far just to know that, did you? Let’s take a virtual tour of the place through this blog.</p>\r\n\r\n<p><strong>What’s so special about this Seven Colored Earth?</strong></p>\r\n\r\n<p>By the looks of it, you’ll feel like someone splashed multiple colors and played “<strong><em>holi</em></strong>” 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’s a strange fact that often bewilders people visiting here, it rains a lot in Mauritius, and these are dunes, still, the formation doesn’t erode, quite fascinating, don’t you think?. Also, they are so majestic that if you pick sand from all these colors, mix it, it’ll separate and form different color layers. (Kinda spooky!). Want to visit the place? We’ll take you there in no time! Get to our customized holiday & honeymoon packages section now to find the best deals to visit Mauritius. Wait, there’s more scroll down!</p>\r\n\r\n<p>There’s another wonder in Mauritius and it is popularly known as the underwater waterfall. Hey! We didn’t name them, You can read our blog on the <a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">underwater waterfall</a> to know more about the wonder. Here’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, </p>\r\n\r\n<p>Mauritius doesn’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’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’t you read our blog on the<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\"> 5 best places to visit in Mauritius</a> to find more about the beauty of Mauritius? It’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’s quickly get a customized plan for you! </p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/mauritius-packages/\">Customize now.</a></p>\r\n\r\n<p> </p>\r\n\r\n<p> </p>\r\n',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','1616052688_blog.png','1616052688.png',NULL,'Aniket Agarwal','2020-10-22',NULL,NULL,NULL,'<p>A trip cannot end without shopping whether it’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’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’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> </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’ll find everything here. The sidewalks are always lively with artists performing throughout the day. 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. 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’ll find everything here, even names you might haven’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 <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">7 best places to visit in Singapore</a> and the <a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">10 best things to do in Singapore.</a> The Marina Bay Sands, that’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 <a href=\"https://www.ineedtrip.com/top-5-must-try-dishes-in-singapore/\">must-try dishes in Singapore</a>, we’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 <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>\r\n',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','1616052981_blog.png','1616052981.png',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. 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 & mind. If you are planning a visit and looking for the 7 best places to visit in Singapore 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. </p>\r\n\r\n<p>Let’s explore the best places in Singapore and brew up your romance while experiencing the special moments in your life. Here’s an advance bonus! Once you’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/\"> 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’t it! 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. 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. </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. A little walk, along with some tête-à-tê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. </p>\r\n\r\n<p>Location: 6 Changi Village Rd, Singapore</p>\r\n\r\n<p>Operation: 24 hours</p>\r\n\r\n<p> </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’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. 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. </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. 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. </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. 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: 18 Marina Gardens Dr, Singapore</p>\r\n\r\n<p>Operation: 5AM- 2 AM</p>\r\n\r\n<p> </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. </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. </p>\r\n\r\n<p>Location: 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 <a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">10 best things to-do in Singapore</a> 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. 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. </p>\r\n\r\n<p>It’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. Remember, there will be a no evening like in a Singapore Flyer along with delicious & 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: 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. </p>\r\n\r\n<p> 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’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. </p>\r\n\r\n<p>Location: Junction of Kampong Bahru Road and, Telok Blangah Rd, Singapore</p>\r\n\r\n<p>Operation: 24 Hours </p>\r\n\r\n<p><strong><strong> </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 7 best places to visit in Singapore 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. 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. 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. </p>\r\n\r\n<p> </p>\r\n\r\n<p>Want to know what to eat in Singapore? Read our blog on the <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. The list doesn’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’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: 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. 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. 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. </p>\r\n\r\n<p>We like Sentosa Island so much that we’ve written a separate blog dedicated to it, it goes by, faboulous <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> </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 <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 <a href=\"https://www.ineedtrip.com/singapore-packages/\">our packages here</a> for more details.</p>\r\n',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','1616053727_blog.png','1616053727.png',NULL,'Aniket Agarwal','2020-09-18',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">The city of hearts, with a roaring lion, Singapore, offers amazing views and a leap into the world’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’s creativity. When you are planning a trip to Singapore, even the thought of trying Singapore’s delicacies makes your mouth watery. Food is something you eat at least twice a day and since you’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.</font></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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Roti Prata & Murtabak</font></b></h5><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">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, 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. </font></span></p></b></h5><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">ROJAK</font></b></h5><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><b 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-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">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. 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.</font></span></p></b></h5><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">WONTON MEE</font></b></h5><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><p style=\"font-size: 16px; font-weight: 400; letter-spacing: normal; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><div style=\"text-align: justify;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em; color: inherit;\">LAKSA</span><br></div></p><p style=\"text-align: justify; font-size: 16px; font-weight: 400; letter-spacing: normal; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. </span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><div style=\"text-align: justify;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em; color: inherit;\">Hainanese Chicken Rice</span><br></div></p><p style=\"text-align: justify; font-size: 16px; font-weight: 400; letter-spacing: normal; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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. <br style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></span></p><p style=\"text-align: justify; font-size: 16px; font-weight: 400; letter-spacing: normal; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\">Want to know about the <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">7 best places to visit in Singapore</a>? Read our blog!</p><p style=\"font-size: 16px; font-weight: 400; letter-spacing: normal; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><b style=\"font-size: 1.625em; letter-spacing: -0.05em; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></b></p><p style=\"text-align: justify; font-size: 16px; font-weight: 400; letter-spacing: normal; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">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/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\"> top 10 things to do in Singapore</a>? If not, you can check out our blog <a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">here.</a> What’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’re most welcomed to do that. Check them out <a href=\"https://www.ineedtrip.com/singapore-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">here.</a></span></p></font></span></h5><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);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"></b></h5>',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\":null,\"detailPackages\":[\"\"]}'),(50,'A short guide to a Singapore Malaysia Honeymoon Tour','a-short-guide-to-a-singapore-malaysia-honeymoon-tour','1616054145_blog.png','1616054145.png',NULL,'Aniket Agarwal','2020-07-16',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\" style=\"\">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’ll give you a brief overview of the classic how, when, and what’s of the combo. Whether it’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’ll get to explore the countries in and out and build memories that last forever. </font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">Without further ado let’s get started with your guide to the Singapore Malaysia Honeymoon Tour</font></p><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">When to visit?</font></strong></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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’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. </font></p><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Which place to visit first?</font></strong></h4><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong 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-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><font face=\"Arial\">There’s no particular sequence as such, we’ll help you with 2 options, you can choose whichever you like.</font></p></strong></h4><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><font face=\"Arial\">Budget first</font></h5><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><ul style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><li style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"></li></ul><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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.</p></font></strong></h4><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><font face=\"Arial\">Luxury first</font></h5><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><ul style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><li style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"></li></ul><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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’s Singapore honeymoon packages and then head over to Malaysia via a flight or bus.</p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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.</p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">Ideal stay?</p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">5-6 days, 3 days in Singapore, and 2 days in Malaysia, should be enough given you are not lazy.</p></font></strong></h4><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Top Places to Visit</font></strong></h4><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong 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-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><font face=\"Arial\">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’s very challenging to make a list of the “must-dos”. Nevertheless, we have noted down some of the best places you can visit to make the most of the trip. Here we go:</font></p></strong></h4><h3 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.8125em;\"><font face=\"Arial\">Starting with Singapore</font></h3><h3 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.8125em;\"><font face=\"Arial\">Sentosa Island</font></h3><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Marina Bay Sands</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Gardens By the Bay</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Night Zoo</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">The world’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. </font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Clarks Quay</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">You can read our blog on the <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">7 Best Places to visit in SIngapore</a> to know more about sightseeing or another blog on the <a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">top 10 things to do in Singapore</a> to know more about the fun part.</font></p><h3 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.8125em;\"><font face=\"Arial\">Malaysia</font></h3><h3 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.8125em;\"><font face=\"Arial\">Petronas Towers</font></h3><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Melaka</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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’s ‘different from beaches’ and offers a look down the history of Malaysia. If you are into historical monuments and sketching, Melaka or Malacca is worth visiting. </font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Redang Island</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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 ‘coral triangle’ 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. </font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Penang Hill</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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’s steepest tunnel track. You can stay at the hill till the sunset and view the splendid city of Penang post dark.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Batu Caves</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Things to do</font></strong></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">When you are visiting two stupendous destinations like Singapore and Malaysia together, that too with ineedtrip, there’s a lot for you to do. Here’s a shortlist of the best things to do on the Singapore Malaysia honeymoon tour.</font></p><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Singapore</font></strong></h4><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4;\"><div style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 25.5px; letter-spacing: -1.275px;\"><br></span></font></div><font face=\"Arial\" style=\"font-size: 2.125em; font-weight: normal; letter-spacing: -0.05em;\"><div style=\"text-align: justify;\"><span style=\"font-size: 2.125em; letter-spacing: -0.05em;\">Indoor skydiving</span></div></font></h4><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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’ll be floating just about 1 meter above the ground, you’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. </font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Night Safari</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><span style=\"font-size: 1.625em; letter-spacing: -0.05em;\"><font face=\"Arial\">Romantic Dinner</font></span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px;\"><font face=\"Arial\">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.</font></p><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Malaysia</font></strong></h4><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><font face=\"Arial\">Scuba Diving/Snorkeling</font></h5><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><ul style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><li style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"></li></ul><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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.</p></font></strong></h4><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><font face=\"Arial\">Shopping</font></h5><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><ul style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><li style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"></li></ul><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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’ll be paying double the amount you pay in Malaysia. So, shop your heart out in this beautiful paradise of earth.</p></font></strong></h4><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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em;\"><font face=\"Arial\">Watersports, Hiking</font></h5><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\"><ul style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\"><li style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"></li></ul><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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’t disappoint you!</p></font></strong></h4><h4 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; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\">Conclusion</font></strong></h4><h4 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><font face=\"Arial\" style=\"\"><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">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 <a href=\"https://www.ineedtrip.com/singapore-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; box-shadow: none;\">Singapore honeymoon packages</a> now. We have some mind-blowing deals, discounts, and pre-designed packages waiting for you.</p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; font-size: 16px; font-weight: 400; letter-spacing: normal;\">Check them out now!</p></font></strong></h4><h4 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);\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></strong><br></h4><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;\"><br></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;\"><span style=\"color: inherit; font-family: Montserrat; font-size: 1.625em; letter-spacing: -0.05em;\"><br></span></p>',NULL,'2021-03-18 13:25:46','2021-03-18 13:25:46',NULL,1,'',0,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\":null,\"detailPackages\":[\"\"]}'),(51,'Fabulous Things to do on Sentosa Island Tour','fabulous-things-to-do-on-sentosa-island-tour','1616054370_blog.png','1616054370.png',NULL,'Aniket Agarwal','2020-05-01',NULL,NULL,NULL,'<p><em>Singapore’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’ll let you in on our quick guide to the fabulous things you can do on your Sentosa Island Tour. Now, we’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 <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">best places to visit in Singapore,</a> then read our blog <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">here. </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’t you? Sentosa has three beaches, namely the Siloso, Palawan, and Tanjong Beach. Our favorite is the Siloso beach, now don’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. </strong></p>\r\n\r\n<p> </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’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. </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’ll be taken in a tunnel with an instructor. Within the tunnel, the air pressure and speed will make you float, and it’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’t much considering you get the complete skydiving experience.</strong></p>\r\n\r\n<p> </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’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 <a href=\"https://www.ineedtrip.com/singapore-packages/\">packages</a> for you. With our packages, you’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> </p>\r\n\r\n<p> </p>\r\n\r\n<p><br />\r\n </p>\r\n',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?','1616054586_blog.png','1616054586.png',NULL,'Aniket Agarwal','2020-04-17',NULL,NULL,NULL,'<p>Yes, you read that right. We’ve created a short guide to help you explore and go on a <strong>honeymoon to Singapore in a decent budget</strong>. Don’t worry, we won’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. The beauty of Singapore attracts millions of tourists every year around the globe. Although there’s a common notion that Singapore doesn’t have too much to offer for couples, we beg to differ. </p>\r\n\r\n<p><em>Here’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. 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’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’s best to book a tour package. Booking a tour package ensures that you don’t have to worry about the cost of a hotel & one meal.</p>\r\n\r\n<p>If you book Singapore Honeymoon Package from ineedtrip, you’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’ve read our blog on the <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> </p>\r\n\r\n<p>So, in order to spend less on hotels, food, and sightseeing it’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’re tired after a long day out, but when you begin your day it’s best to take public transport like the metro or bus. You’ll not only get to see the mind-boggling infrastructure of this first world country, but you’ll also be saving a lot on the travel cost. </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’s worth the cost. If you travel in cabs or taxis, you’ll end up spending a huge chunk of your money just getting from one point to another. Don’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’d rather ask you to save that money for shopping. Trust us, you don’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’ll get to experience the true taste of Singapore’s delicacies without spending much of the food budget.</p>\r\n\r\n<p> </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’ll be affordable since you’d be saving a lot on your daily food cost. </p>\r\n\r\n<p><strong>Add some adventure sports</strong></p>\r\n\r\n<p>You’ve been a good reader, so here’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. </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. </p>\r\n\r\n<p>So, that was a blog on <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’ll last for a lifetime.</p>\r\n\r\n<p> </p>\r\n\r\n<p>Now that you’re all set why don’t you head over to our <a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore Honeymoon Packages</a> section? We have some crazy deals and discounts tailored just for you.</p>\r\n\r\n<p> </p>\r\n\r\n<p> </p>\r\n',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','1616054990_blog.png','1616054990.png',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’t matter who you go with, friends, family or your partner, Singapore’s charms gratifies everyone. </em></p>\r\n\r\n<p>In this blog, you’ll be taking a virtual tour of Singapore, and you’ll also get to know the 10 best things to do in Singapore. You’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 “Zindagi Na Milegi Dobara”, and you’re scared just like “Imran”, 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’ve written a separate blog on this, it goes by ‘<a href=\"https://www.ineedtrip.com/skydiving-in-singapore-sep-skydive-without-jumping-from-a-plane-oh-yes/\">Skydiving in Singapore’</a>.</p>\r\n\r\n<p>Best time to Visit: Anytime</p>\r\n\r\n<p>Cost: 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’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’ll find thrilling rides, amazing shows and some delicious food here. Just like Disneyland, no moment at Universal Studios is ‘not fun’. Almost all the pre-planned Singapore honeymoon packages 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 – $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’ll get to see over 800 species of marine life. Besides sharks, whales you’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’ve included a tour to Sentosa Island within all the Singapore honeymoon packages. </p>\r\n\r\n<p>Best time to Visit: Weekdays between 10:00 AM – 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’s first night zoo</strong></h2>\r\n\r\n<p>We’ve all visited zoos in our city/state, then what’s so different about this one? Well, the ‘Night Safari’, in Singapore is a nocturnal zoo. You’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: Anytime</p>\r\n\r\n<p>Cost: $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’re on honeymoon, diving is one of the best things to do in Singapore for couples. There are 5 different beaches, where you can dive to see lively and vivid coral reefs. While scuba diving in Singapore, 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: $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’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’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: Visit in the evening around sunset for a picturesque view.</p>\r\n\r\n<p>Cost: 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’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: Between 5 Pm to 8 Pm</p>\r\n\r\n<p>Cost: 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’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: October-December</p>\r\n\r\n<p>Cost: 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’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’t get sloshed.</p>\r\n\r\n<p>Best time to visit: 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’s a golden rule for every traveller, ‘the trip must end with shopping’. You would definitely want to get your hands on to some cheap souvenirs or ‘Made in China’ 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: Depends on your budget.</p>\r\n\r\n<p><strong>Read our blog on the <a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">must-visit places in Singapore</a> 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 <a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore tour packages</a> and what’s best? We’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> </p>\r\n',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','1616055283_blog.png','1616055283.png',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’ll first have to board a plane. No, not to jump out of it, but to travel to the location where you’ll be diving i.e. 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. </p>\r\n\r\n<p>Let’s get into the details of that skydiving escapade that we’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 <strong>Sentosa Island</strong>.</p>\r\n\r\n<p> iFlyworld offers indoor skydiving where you’ll get all the feels of skydiving. The most surprising fact? You’ll be flying at about 5 feet above the ground. </p>\r\n\r\n<p>The entire flight session lasts for one and a half hours, and they’ll even train you before your flight.<em> How will you fly?</em> 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 <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’s in SINGAPORE and it’s completely safe.</p>\r\n\r\n<p> </p>\r\n\r\n<p> </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’ll give you two more reasons to visit the <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’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’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’t be a single second where you don’t enjoy it!</strong></p>\r\n\r\n<p> </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 <strong>ineedtrip’s</strong> customized holiday and honeymoon packages. We’ll not only take you to <strong>Sentosa Island</strong> but also give you a complete tour of Singapore. </strong></p>\r\n\r\n<p><strong>Want to know more about Singapore? Visit this blog on <a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">Top 10 Must-do activities in Singapore. </a></strong></p>\r\n\r\n<p><strong>Coming back to the question, the price! Indoor <strong>skydiving in Singapore</strong> 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. </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’re worried about the budget, we‘ve got you covered. We’ll take you to Singapore with the best itinerary and lowest prices. Check out our customized <a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore holiday packages</a>, you won’t get such crazy deals anywhere else!</strong></p>\r\n\r\n<p><strong>See ya later, folks!</strong></p>\r\n',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','1616078448_blog.png','1616078448.png',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’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> </p>\r\n\r\n<p>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>best honeymoon packages to Maldives Pic Creds: Instagram/@katharina_fenners.</p>\r\n\r\n<p> </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’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’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×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>\r\n',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','1616078820_blog.png','1616078820.png',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’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’ll tell you how to go about planning a dinner date on honeymoon in Maldives. Without any further ado, let’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’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’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’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’t just get luxury; you get a unique experience that you can’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’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’ll never be able to forget. So if you’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’s an open-air lounge, there’s lots of wine, there are homemade chocolate and icecream, innumerable dining options, and more. Combining the classic tale of Daniel Defoe’s Robinson Crusoe with exquisite splendor, Soneva Fushi is something you simply can’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’s honeymoon packages? Planning, searching, further planning, and managing: and still you can’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’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’s honeymoon packages are the best!</p>\r\n',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','1616079230_blog.png','1616079230.png',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’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’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’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’ll observe higher prices than usual. If you choose to travel between May and October, you’ll see cheaper accommodation and lower prices in general. But you’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’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’ll cherish for the rest of your life. Most of the resorts in the Maldives have their own private reefs which means you don’t have to go anywhere and you can snorkel around to your heart’s content. The reef fish often surrounds the humans snorkeling around and it’s a visual treat with a blast of colors around you. Not just that, you can often come across small sharks (they won’t eat you, don’t worry!), turtles, and a wide variety of marine life so closely and vividly. It’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’s an experience you’ll never ever forget and to say it’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’re interested in the history of the Maldives, you simply can’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’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’s palace, Muleeaage is now the president’s residence, which means you aren’t allowed to enter it. That shouldn’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’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’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’re traveling to Maldives on honeymoon, it doesn’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’s frenzied activity. At the Maldives, you can experience some of the finest culinary experiences at the most unlikely of locations (there’s even an underground restaurant!). Not just that, some resorts can arrange expeditions to secluded islands where you can enjoy each other’s company without any interruptions whatsoever. Depending on the resort you’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’s everything for everyone in this gorgeous country and is definitely the best place for your perfect honeymoon! Why You Must Purchase ineedtrip’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’re traveling to Maldives on honeymoon, you must try out our Maldives honeymoon packages that are here to make your simpler and fun!</p>\r\n',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 "must-dos" 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','1616080967_blog.png','1616080967.png',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’s so much variety and so much goodness out there, it’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> </p>\r\n\r\n<p><strong>CONRAD MALDIVES RANGALI ISLAND</strong> (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’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’t mean they don’t offer a dive in Maldives’ authentic taste, you’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> – 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 – 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 ‘all you can eat’ breakfast, lunch, dinner buffets. So, if you’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’ll find the dishes loaded with their Asia – 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> – 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’re done with the list of the 5 best restaurants in Maldives for you, let’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’ve got limited packages, book yours now!</p>\r\n',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','1616081453_blog.png','1616081453.png',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’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’t need any introduction and we’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’ve talked about sightseeing, activities, resorts in other blogs, today we’ll talk about the must try dishes in Maldives. Without further ado let’s start with the list of the delicaices that’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’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’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’re looking to add some sweetness to your cuisine, this is the perfect dish for you. The dish somewhat looks and tastes like our “desi kheer’ 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’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’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’t have to do the “pass the menu – you decide’ thing. Well, if you’re looking someone to help you with Maldives honeymoon packages or maldives packages for families, head on to our packages section. We’ve got some amazing deals and discounts running year around!</p>\r\n',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-','1616081748_blog.png','1616081748.png',NULL,'Aniket Agarwal','2020-12-09',NULL,NULL,NULL,'<p>The Maldives, located on the Chagos-Laccadive Ridge, is undoubtedly a honeymooner’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’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’ 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’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 & 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 & 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: </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 & 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 & 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 & 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 & 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’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 & 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 & 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>\r\n',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-','1616082067_blog.png','1616082067.png',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 “Tropical Heaven” 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. “Life is either a daring adventure or nothing at all” - 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>“Because there’s nothing more beautiful than the way the ocean refuses to stop kissing the shoreline, no matter how many times it’s sent away” – 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’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>“Take only memories, leave only Footprints” – Chief Seattle With a 4.7 rating and gleaming reviews when you google the title “Sun Island Resort” 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 à 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 – 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 & spa</strong> Pic Creds: Instagram/@warmwelcomemag </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 — that’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é 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’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’t be disappointed a bit if not thankful that you chose to spend that vacation money you were stacking your saving jar with. It’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>\r\n',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-','1616082375_blog.png','1616082375.png',NULL,'Aniket Agarwal','2020-11-18',NULL,NULL,NULL,'<p>Maldives is a paradise for beach lovers and it truly brings the saying “live life king size” 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’ll just drool over the pictures of the resorts we’ve mentioned in this blog. But, it doesn’t end here, the whole place is full of exotic views, scenery. Maldives is one of our favorite destinations and we’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’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 & 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’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’re up for some romantic dinners, they’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’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’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 & 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’s no upper capping. With super wide rooms, open airy villas featured with natural materials, wooden floors, free wifi, lounges, cycling, you’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’s more? We’ll cover activities as a part of your package as well. You can customize it completely. Check it out now!</p>\r\n',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','1616082671_blog.png','1616082671.png',NULL,'Aniket Agarwal','2020-10-30',NULL,NULL,NULL,'<p>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 Maldives islands, 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>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>DHIGURAH BEACH best beaches in Maldives Pic Creds: 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>Thun’di KURUMBA BEACH best beaches in maldives Pic Creds: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>THE HULHUMALE BEACH Pic Creds: 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 & room services Excursions are available .</p>\r\n\r\n<p>THE MALE ARTIFICIAL BEACH best beaches in maldives Pic Creds: 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 & 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 trip to Maldives, do check out our Maldives honeymoon packages section, you’ll find the best prices, and resorts there. Let’s get booking!</p>\r\n',NULL,'2021-03-18 21:21:12','2021-03-18 21:21:12',NULL,1,'',0,0,'Best Beaches In Maldives For Couples','','','',1,'{\"blogdetailTitle\":[\"\",\"\"],\"BlogDescription\":[\"\",\"\"],\"images\":[\"\"],\"detailPackages\":[\"\",\"\"]}'),(64,'Latest Travel Guidelines For Maldives During COVID-19','latest-travel-guidelines-for-maldives-during-covid-19','1616592098_blog.jpg','1616083019.png',NULL,'Aniket Agarwal','2020-09-24',NULL,NULL,NULL,'<p>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><strong>GUIDELINES FOR YOUR TRIP FROM INDIA TO MALDIVES</strong></p>\r\n\r\n<p>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 Maldives.</p>\r\n\r\n<p><strong>FREE TOURIST VISA FOR 30 DAYS </strong></p>\r\n\r\n<p>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><strong>UPON ARRIVING MALDIVES </strong></p>\r\n\r\n<p>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><strong>COMPULSORY PCR TEST</strong></p>\r\n\r\n<p>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><strong>ISLAND HOPPING IS PERMITTED</strong></p>\r\n\r\n<p>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><strong>GUIDELINES ON LEAVING THE MALDIVES</strong></p>\r\n\r\n<p>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><strong>HIRE THE TRAVEL AGENCY</strong></p>\r\n\r\n<p>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 trip to Maldives. 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>\r\n',NULL,'2021-03-18 21:27:00','2021-03-18 21:27:00',NULL,1,'',1,0,'Latest Travel Guidelines For Maldives During COVID-19','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(65,'5 Best Places To Shop In Maldives','5-best-places-to-shop-in-maldives','1616592423_blog.jpg','1616083714.png',NULL,'Aniket Agarwal','2020-08-24',NULL,NULL,NULL,'<p>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><strong>MALE LOCAL MARKET</strong></p>\r\n\r\n<p>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><strong>MAJEEDHEE MAGU MARKET </strong></p>\r\n\r\n<p>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><strong>CHAANDHANEE MAGU MARKET</strong> best places to shop in maldives Photo Cred: instagram/buddys.insta</p>\r\n\r\n<p>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><strong>CENTRO MALL</strong> best places to shop in Maldives</p>\r\n\r\n<p>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><strong>OEVAALI ART SHOP</strong></p>\r\n\r\n<p>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 Maldives holiday 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 packages here.</p>\r\n',NULL,'2021-03-18 21:38:35','2021-03-18 21:38:35',NULL,1,'',1,0,'Best Places To Shop In Maldives','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(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 & 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','1616084911_blog.png','1616084911.png',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p>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.</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>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 honeymoon packages and the amazing features the hold!</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong>Book an Underwater Bungalow</strong> Pic Cred: Conradmaldives</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Dinner on the Beach </strong></p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>A Romantic Walk at the Glowing Beach</strong> </p>\r\n\r\n<p>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 honeymoon in the Maldives. 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?“.</p>\r\n\r\n<p><strong>Satisfy Your Taste-bud at Underwater Restaurant</strong> </p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p>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 honeymoon packages 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!</p>\r\n',NULL,'2021-03-18 21:58:31','2021-03-18 21:58:31',NULL,1,'',0,0,'Best Things To Do In The Maldives For Honeymoon','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.','','',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?-','1616085364_blog.png','1616085364.png',NULL,'Aniket Agarwal','2020-04-23',NULL,NULL,NULL,'<p>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 & 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>\r\n',NULL,'2021-03-18 22:06:04','2021-03-18 22:06:04',NULL,1,'',0,0,'Safest Place For Honeymoon After Coronavirus Crisis','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.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(69,'5 Best Places To Visit In Maldives For Honeymoon','5-best-places-to-visit-in-maldives-for-honeymoon','1616591243_blog.jpg','1616086404.png',NULL,'Aniket Agarwal','2020-04-08',NULL,NULL,NULL,'<p>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>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 Maldives Honeymoon 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><strong>The Hulhumale beach</strong> </p>\r\n\r\n<p>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><strong>Things to do</strong>: Dolphin Watching, Water Sports, Diving, Snorkeling</p>\r\n\r\n<p><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 honeymoon package to Maldives? Click here to customize now.</p>\r\n\r\n<p><strong>Things to do:</strong> Wakeboarding, Parasailing, Snorkeling</p>\r\n\r\n<p><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><strong>Things to do</strong>: Scuba Diving, Canoe Ride</p>\r\n\r\n<p><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 & 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><strong>Things to do:</strong> Hit the bikini beach, Night fishing, Dolphin Safari</p>\r\n\r\n<p><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><strong>Things to do:</strong> Visiting Artificial beach, Sultan park, male local market</p>\r\n\r\n<p><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 Maldives honeymoon packages 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>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>\r\n',NULL,'2021-03-18 22:23:24','2021-03-18 22:23:24',NULL,1,'',1,0,'Best Places To Visit In Maldives For Honeymoon','The luxurious lifestyle & unrivaled beaches make Maldives the perfect destination for honeymooners. Here\'s a list of the 5 best places to visit in Maldives.','','[\"30\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"24757,24730\"]}'),(70,'10 Best Restaurants in Dubai for Couples','10-best-restaurants-in-dubai-for-couples','1616591791_blog.jpg','1616130579.png',NULL,'Aniket Agarwal','2020-12-03',NULL,NULL,NULL,'<p>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.</p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Falcon Oasis Floating Restaurant</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Marina Social</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Level 43 Sky Lounge </strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Eauzone</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Hakkasan</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Karma Kafe</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>The Shore </strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>Shades</strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p><strong>The Beach Bar & Grill</strong></p>\r\n\r\n<p>An array of palm trees swaying alongside the blue waters of the beach is what you will be looking at from The Beach Bar & Grill. Located at Al Sufouh Road, One & 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)</p>\r\n\r\n<p><strong>Iris </strong></p>\r\n\r\n<p>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)</p>\r\n\r\n<p>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.</p>\r\n',NULL,'2021-03-19 10:39:40','2021-03-19 10:39:40',NULL,1,'',1,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','','[\"28\"]',1,'{\"blogdetailTitle\":[\"Falcon Oasis Floating Restaurant\",\"Marina Social\",\"Level 43 Sky Lounge\",\"The Beach Bar & Grill\"],\"BlogDescription\":[\"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. \\r\\nCost for two \\u2013 AED 190, $52 (without alcohol) \",\"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. \\r\\nCost for two \\u2013 AED 382, $104 (Without alcohol)\",\"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. \\r\\nCost for two- AED 450, $123 (With Alcohol)\",\"An array of palm trees swaying alongside the blue waters of the beach is what you will be looking at from The Beach Bar & Grill. Located at Al Sufouh Road, One & 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 \\r\\nCost for two: USD 125, AED 450 (without alcohol)\"],\"images\":[\"\"],\"detailPackages\":[\"\",\"\",\"\",\"\"]}'),(71,'A Guide To The Cheapest Yet Luxurious Honeymoon To Bali','a-guide-to-the-cheapest-yet-luxurious-honeymoon-to-bali','1616132190_blog.png','1616132190.png',NULL,'Aniket Agarwal','2020-04-16',NULL,NULL,NULL,'<p>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 Bali honeymoon packages 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><strong>How to Handle Visa?</strong></p>\r\n\r\n<p>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><strong>When to Book Flights?</strong></p>\r\n\r\n<p>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><strong>How to get around?</strong></p>\r\n\r\n<p>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><strong>Where and What to eat?</strong></p>\r\n\r\n<p>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><strong>Babi Guling:</strong></p>\r\n\r\n<p>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><strong>Where to Eat: Warung Babi Guling Pak Malen Nasi Goreng:</strong></p>\r\n\r\n<p>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><strong>Gado Gado:</strong></p>\r\n\r\n<p>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><strong>Where to Eat: Made’s Warung/ Chez Gado Gado Restaurant Murtabak:</strong></p>\r\n\r\n<p>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>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><strong>Must-Visit</strong></p>\r\n\r\n<p>1) Uluwatu Temple cliff</p>\r\n\r\n<p>2) Tanah Lot</p>\r\n\r\n<p>3) Gili Islands</p>\r\n\r\n<p>4) Nusa Islands (Kelingking beach particularly)</p>\r\n\r\n<p>5) Lovina Beach</p>\r\n\r\n<p>6) Mount Batur</p>\r\n\r\n<p>7) Sekumpul Waterfalls Can be missed out (only if you’re short on time)</p>\r\n\r\n<p> </p>\r\n\r\n<p>1) Waterbom Bali (adventure park)</p>\r\n\r\n<p>2) Bali Zoo</p>\r\n\r\n<p>3) Goa Gajah</p>\r\n\r\n<p>4) Git Git Waterfalls</p>\r\n\r\n<p>5) Sacred Monkey Forest</p>\r\n\r\n<p>6) Sanur</p>\r\n\r\n<p>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><strong>Bonus Honeymoon Activities</strong></p>\r\n\r\n<p>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 package right now!</p>\r\n',NULL,'2021-03-19 11:06:31','2021-03-19 11:06:31',NULL,1,'',0,0,'Guide for cheapest and luxurious honeymoon to Bali','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','','',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','1616583742_blog.jpg','1616134136.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’. 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>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.</p>\r\n\r\n<p> </p>\r\n\r\n<p>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>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>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><strong>Kelingking Beach</strong></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’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><strong>Mount Batur</strong></p>\r\n\r\n<p>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 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>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>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><strong>READ: 7 BEST PLACES TO VISIT IN BALI </strong></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 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>\r\n',NULL,'2021-03-19 11:38:57','2021-03-19 11:38:57',NULL,1,'',1,0,'Best travel destination with world\'s 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\":[\"\"]}'),(73,'A Guide On Planning A Trip To Maldives From India','a-guide-on-planning-a-trip-to-maldives-from-india','1616582688_blog.jpg','1616134334.png',NULL,'Aniket Agarwal','2020-04-22',NULL,NULL,NULL,'<p>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.</p>\r\n\r\n<p><strong>Best time to visit Maldives</strong></p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Visa Bookings</strong></p>\r\n\r\n<p>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.</p>\r\n\r\n<p><strong>Defining the budget</strong></p>\r\n\r\n<p>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.</p>\r\n\r\n<p>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 Maldives tour package 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.</p>\r\n\r\n<p><strong>Best places to visit in Maldives</strong></p>\r\n\r\n<p>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 trip to Maldives. If you want to know about these places in detail you can visit our blog on the 5 best places to visit in Maldives.</p>\r\n\r\n<p>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 Maldives trip. Don’t forget to tell us about it, when you get back.</p>\r\n',NULL,'2021-03-19 11:42:15','2021-03-19 11:42:15',NULL,1,'',1,0,'Guide On Planning A Trip To Maldives From India','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','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}');
/*!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:28:06